equal
deleted
inserted
replaced
76 \title[Plotting with Python]{Python for Science and Engg: Plotting experimental data} |
76 \title[Plotting with Python]{Python for Science and Engg: Plotting experimental data} |
77 |
77 |
78 \author[FOSSEE] {FOSSEE} |
78 \author[FOSSEE] {FOSSEE} |
79 |
79 |
80 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
80 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
81 \date[] {11 January, 2010\\Day 1, Session 2} |
81 \date[] {28 January, 2010\\Day 1, Session 2} |
82 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
82 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
83 |
83 |
84 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
84 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
85 %\logo{\pgfuseimage{iitmlogo}} |
85 %\logo{\pgfuseimage{iitmlogo}} |
86 |
86 |
310 This gives \kwrd{tsq} which is the list of squares of \typ{t} values. |
310 This gives \kwrd{tsq} which is the list of squares of \typ{t} values. |
311 \end{frame} |
311 \end{frame} |
312 |
312 |
313 \begin{frame}[fragile] |
313 \begin{frame}[fragile] |
314 \frametitle{How to come out of the \texttt{for} loop?} |
314 \frametitle{How to come out of the \texttt{for} loop?} |
315 Hit the ``ENTER'' key twice to return to the previous indentation level |
315 Recall that hitting the ``ENTER'' key twice returns the cursor to the previous indentation level |
316 \begin{lstlisting} |
316 \begin{lstlisting} |
317 In []: for time in t: |
317 In []: for time in t: |
318 ....: tsq.append(time*time) |
318 ....: tsq.append(time*time) |
319 ....: |
319 ....: |
320 ....: |
320 ....: |