day2/session3.tex
changeset 97 555237dbce44
parent 96 a749db24e73b
equal deleted inserted replaced
96:a749db24e73b 97:555237dbce44
    95 
    95 
    96 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    96 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    97 % Title page
    97 % Title page
    98 \title[]{3D data Visualization}
    98 \title[]{3D data Visualization}
    99 
    99 
   100 \author[FOSSEE Team] {Asokan Pichai\\Prabhu Ramachandran}
   100 \author[FOSSEE Team] {FOSSEE}
   101 
   101 
   102 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
   102 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
   103 \date[] {11, October 2009}
   103 \date[]{11, October 2009}
   104 \date[] % (optional)
   104 %\date[] % (optional)
   105 }
   105 
   106 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
   106 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
   107 
   107 
   108 %\pgfdeclareimage[height=0.75cm]{iitblogo}{iitblogo}
   108 %\pgfdeclareimage[height=0.75cm]{iitblogo}{iitblogo}
   109 %\logo{\pgfuseimage{iitblogo}}
   109 %\logo{\pgfuseimage{iitblogo}}
   110 
   110 
   111 \AtBeginSection[]
   111 \AtBeginSection[]
   112 {
   112 {
   113   \begin{frame}<beamer>
   113   \begin{frame}<beamer>
   114     \frametitle{Outline}
   114     \frametitle{Outline}      
   115       \Large
       
   116     \tableofcontents[currentsection,currentsubsection]
   115     \tableofcontents[currentsection,currentsubsection]
   117   \end{frame}
   116   \end{frame}
   118 }
   117 }
   119 
   118 
   120 %% Delete this, if you do not want the table of contents to pop up at
   119 %% Delete this, if you do not want the table of contents to pop up at
   142   \maketitle
   141   \maketitle
   143 \end{frame}
   142 \end{frame}
   144 
   143 
   145 \begin{frame}
   144 \begin{frame}
   146   \frametitle{Outline}
   145   \frametitle{Outline}
   147   \Large
       
   148   \tableofcontents
   146   \tableofcontents
   149   % You might wish to add the option [pausesections]
   147   % You might wish to add the option [pausesections]
   150 \end{frame}
   148 \end{frame}
   151 
   149 
   152 \section{3D Data Visualization}
   150 \section{3D Data Visualization}
   474   \begin{lstlisting}
   472   \begin{lstlisting}
   475 x, y, z = mgrid[-50:50:20j,-50:50:20j,
   473 x, y, z = mgrid[-50:50:20j,-50:50:20j,
   476                 -10:60:20j]
   474                 -10:60:20j]
   477   \end{lstlisting}
   475   \end{lstlisting}
   478 \inctime{20}
   476 \inctime{20}
       
   477 
       
   478 \end{frame}
       
   479 \begin{frame}[fragile]
       
   480     \frametitle{Solution}
       
   481   \begin{lstlisting}
       
   482 def lorenz(x,y,z,s=10.,r=28.,b=8./3.):
       
   483     u = s*(y-x)
       
   484     v = r*x-y-x*z
       
   485     w = x*y-b*z
       
   486     return u,v,w
       
   487 x,y,z = mgrid [-50:50:20j,-50:50:20j,
       
   488                     -10:60:20j ]
       
   489 u,v,w = lorenz( x , y , z )
       
   490 # Your plot here
       
   491 #
       
   492 mlab.show()
       
   493 
       
   494   \end{lstlisting}
   479 \end{frame}
   495 \end{frame}
   480   
   496   
   481 \end{document}
   497 \end{document}
   482 
   498