day2/session3.tex
changeset 101 919c93e5aa71
parent 97 555237dbce44
equal deleted inserted replaced
100:e0610b591526 101:919c93e5aa71
    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}
   223 \begin{frame}
   221 \begin{frame}
   224     \frametitle{Mayavi in applications}
   222     \frametitle{Mayavi in applications}
   225       \vspace*{-0.3in}
   223       \vspace*{-0.3in}
   226   \begin{center}    
   224   \begin{center}    
   227     \hspace*{-0.2in}\pgfimage[width=4.5in]{MEDIA/m2/m2_envisage}
   225     \hspace*{-0.2in}\pgfimage[width=4.5in]{MEDIA/m2/m2_envisage}
       
   226   \end{center}
       
   227 \end{frame}
       
   228 
       
   229 \begin{frame}
       
   230     \frametitle{Live in your dialogs}
       
   231       \vspace*{0.1in}
       
   232   \begin{center}    
       
   233     \hspace*{-0.2in}\pgfimage[width=2.5in]{MEDIA/m2/mlab_tui}
   228   \end{center}
   234   \end{center}
   229 \end{frame}
   235 \end{frame}
   230 
   236 
   231 \begin{frame}
   237 \begin{frame}
   232     {Exploring the documentation}
   238     {Exploring the documentation}
   466   \begin{lstlisting}
   472   \begin{lstlisting}
   467 x, y, z = mgrid[-50:50:20j,-50:50:20j,
   473 x, y, z = mgrid[-50:50:20j,-50:50:20j,
   468                 -10:60:20j]
   474                 -10:60:20j]
   469   \end{lstlisting}
   475   \end{lstlisting}
   470 \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}
   471 \end{frame}
   495 \end{frame}
   472   
   496   
   473 \end{document}
   497 \end{document}
   474 
   498