summaryrefslogtreecommitdiff
path: root/day1/session5.tex
diff options
context:
space:
mode:
Diffstat (limited to 'day1/session5.tex')
-rw-r--r--day1/session5.tex9
1 files changed, 3 insertions, 6 deletions
diff --git a/day1/session5.tex b/day1/session5.tex
index 1098b3e..4f51519 100644
--- a/day1/session5.tex
+++ b/day1/session5.tex
@@ -78,7 +78,7 @@
\author[FOSSEE] {FOSSEE}
\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
-\date[] {11 January, 2010\\Day 1, Session 5}
+\date[] {12 February, 2010\\Day 1, Session 5}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo}
@@ -127,10 +127,7 @@ for line in open('pendulum.txt'):
point = line.split()
l.append(float(point[0]))
t.append(float(point[1]))
-tsq = []
-for time in t:
- tsq.append(time*time)
-plot(l, tsq, '.')
+plot(l, t, '.')
\end{lstlisting}
\end{block}
\end{columns}
@@ -192,7 +189,7 @@ In []: plot(x, exp(x/10)*sin(x))
\begin{frame}[fragile]
\frametitle{Problem 3 cont...}
-Create a sequence of images in which the damped oscillator($e^{x/10}sin(x)$) slowly evolves over time.
+Create a sequence of images in which the damped oscillator($e^{-x/10}sin(x)$) slowly evolves over time.
\begin{columns}
\column{0.35\textwidth}
\includegraphics[width=1.5in,height=1.5in, interpolate=true]{data/plot2}