summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrabhu Ramachandran2010-06-28 01:37:42 -0500
committerPrabhu Ramachandran2010-06-28 01:37:42 -0500
commit8e831cf3476e0aae2480d3d1af53bafe4a5dd178 (patch)
treec5a1894d4421121c9b6d33c08d31c388bb98420d
parentcbaf4f336a05107afc0067a6cbf2c78bf4b35375 (diff)
downloadworkshops-more-scipy-8e831cf3476e0aae2480d3d1af53bafe4a5dd178.tar.gz
workshops-more-scipy-8e831cf3476e0aae2480d3d1af53bafe4a5dd178.tar.bz2
workshops-more-scipy-8e831cf3476e0aae2480d3d1af53bafe4a5dd178.zip
Minor changes to session1.
--HG-- branch : scipy2010
-rw-r--r--day1/session1.tex5
1 files changed, 3 insertions, 2 deletions
diff --git a/day1/session1.tex b/day1/session1.tex
index c463f47..50aa6f9 100644
--- a/day1/session1.tex
+++ b/day1/session1.tex
@@ -259,9 +259,9 @@ Exiting
%% \end{block}
%% \end{frame}
-\section{Loops}
+\section{Breaking out of loops}
\begin{frame}[fragile]
-\frametitle{Loops}
+\frametitle{Breaking out of Loops}
Breaking out of loops
\begin{lstlisting}
In []: while True:
@@ -515,6 +515,7 @@ In []: annotate('local max', xy=(1.5, 1))
\begin{lstlisting}
In []: xmin, xmax = xlim()
In []: ymin, ymax = ylim()
+In []: print xmin, xmax
\end{lstlisting}
\emphbar{Set the axes limits}
\begin{lstlisting}