summaryrefslogtreecommitdiff
path: root/day2/session2.tex
diff options
context:
space:
mode:
authorSantosh G. Vattam2009-10-09 12:10:46 +0530
committerSantosh G. Vattam2009-10-09 12:10:46 +0530
commit8edfaa6a00a5d0f13b57a53d0e1804a94f343a8d (patch)
treec3f8b0baafbba52e00fa80809f0fe7aec6a863c0 /day2/session2.tex
parent97fa2f26647b1dc437779aed84b35d3cdb6927c8 (diff)
parent851b06f1ef9c53f64515b02a5f0bc9e584329c8d (diff)
downloadworkshops-more-scipy-8edfaa6a00a5d0f13b57a53d0e1804a94f343a8d.tar.gz
workshops-more-scipy-8edfaa6a00a5d0f13b57a53d0e1804a94f343a8d.tar.bz2
workshops-more-scipy-8edfaa6a00a5d0f13b57a53d0e1804a94f343a8d.zip
Merged branches.
Diffstat (limited to 'day2/session2.tex')
-rw-r--r--day2/session2.tex21
1 files changed, 16 insertions, 5 deletions
diff --git a/day2/session2.tex b/day2/session2.tex
index 9a02146..3f0184d 100644
--- a/day2/session2.tex
+++ b/day2/session2.tex
@@ -124,11 +124,12 @@
\begin{lstlisting}
>>> a = np.arange(4)
>>> b = np.arange(5)
- >>> a+b
+ >>> a+b #Does this work?
>>> a+3
>>> c=np.array([3])
- >>> a+c
- >>> b+c
+ >>> a+c #Works!
+ >>> b+c #But how?
+ >>> a.shape, b.shape, c.shape
\end{lstlisting}
\begin{itemize}
\item Enter Broadcasting!
@@ -426,8 +427,18 @@
Make a plot of $\frac{dx}{dt}$ vs. $x$.
\inctime{30}
\end{frame}
-
-
+\begin{frame}{Summary}
+ \begin{itemize}
+ \item Advanced NumPy
+ \item SciPy
+ \begin{itemize}
+ \item Linear Algebra
+ \item Integration
+ \item Interpolation
+ \item Signal and Image processing
+ \end{itemize}
+ \end{itemize}
+\end{frame}
\end{document}
- Numpy arrays (30 mins)