summaryrefslogtreecommitdiff
path: root/day2/session3.tex
diff options
context:
space:
mode:
authorPuneeth Chaganti2009-10-12 11:56:07 +0530
committerPuneeth Chaganti2009-10-12 11:56:07 +0530
commit845ec77347379bd7aa7ce52f028de3c1fe6fc8b8 (patch)
treef841834f329de6d9523f8f3fcc8da4be40ae6507 /day2/session3.tex
parentc1fe545a7fc4ec169a3b779e53131c9d8ff9b02d (diff)
downloadworkshops-845ec77347379bd7aa7ce52f028de3c1fe6fc8b8.tar.gz
workshops-845ec77347379bd7aa7ce52f028de3c1fe6fc8b8.tar.bz2
workshops-845ec77347379bd7aa7ce52f028de3c1fe6fc8b8.zip
Changing authors, etc. Changes at BPRIM.
Diffstat (limited to 'day2/session3.tex')
-rw-r--r--day2/session3.tex30
1 files changed, 23 insertions, 7 deletions
diff --git a/day2/session3.tex b/day2/session3.tex
index b4d30d3..d262ab5 100644
--- a/day2/session3.tex
+++ b/day2/session3.tex
@@ -97,12 +97,12 @@
% Title page
\title[]{3D data Visualization}
-\author[FOSSEE Team] {Asokan Pichai\\Prabhu Ramachandran}
+\author[FOSSEE Team] {FOSSEE}
\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
-\date[] {11, October 2009}
-\date[] % (optional)
-}
+\date[]{11, October 2009}
+%\date[] % (optional)
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\pgfdeclareimage[height=0.75cm]{iitblogo}{iitblogo}
@@ -111,8 +111,7 @@
\AtBeginSection[]
{
\begin{frame}<beamer>
- \frametitle{Outline}
- \Large
+ \frametitle{Outline}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
@@ -144,7 +143,6 @@
\begin{frame}
\frametitle{Outline}
- \Large
\tableofcontents
% You might wish to add the option [pausesections]
\end{frame}
@@ -476,6 +474,24 @@ x, y, z = mgrid[-50:50:20j,-50:50:20j,
-10:60:20j]
\end{lstlisting}
\inctime{20}
+
+\end{frame}
+\begin{frame}[fragile]
+ \frametitle{Solution}
+ \begin{lstlisting}
+def lorenz(x,y,z,s=10.,r=28.,b=8./3.):
+ u = s*(y-x)
+ v = r*x-y-x*z
+ w = x*y-b*z
+ return u,v,w
+x,y,z = mgrid [-50:50:20j,-50:50:20j,
+ -10:60:20j ]
+u,v,w = lorenz( x , y , z )
+# Your plot here
+#
+mlab.show()
+
+ \end{lstlisting}
\end{frame}
\end{document}