day1/session2.tex
changeset 330 46533051b9d3
parent 319 cef948318842
child 339 8ac5fe07810f
equal deleted inserted replaced
329:0a6ab1d81491 330:46533051b9d3
    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[] {7 November, 2009\\Day 1, Session 2}
    81 \date[] {14 December, 2009\\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 
   416 In []: greet.split()
   416 In []: greet.split()
   417 Out[]: ['hello', 'world']
   417 Out[]: ['hello', 'world']
   418   \end{lstlisting}
   418   \end{lstlisting}
   419 This is what happens with \typ{line}
   419 This is what happens with \typ{line}
   420   \begin{lstlisting}
   420   \begin{lstlisting}
   421 In []: line = '1.2000e-01 7.4252e-01'
   421 In []: line = '1.20 7.42'
   422 
   422 
   423 In []: point = line.split()
   423 In []: point = line.split()
   424 
   424 
   425 In []: point
   425 In []: point
   426 Out[]: ['1.2000e-01', '7.4252e-01']
   426 Out[]: ['1.20', '7.42']
   427   \end{lstlisting}
   427   \end{lstlisting}
   428 \end{frame}
   428 \end{frame}
   429 
   429 
   430 \begin{frame}[fragile]
   430 \begin{frame}[fragile]
   431 \frametitle{Getting floats from strings}
   431 \frametitle{Getting floats from strings}