diff options
-rw-r--r-- | day2/session2.tex | 59 |
1 files changed, 50 insertions, 9 deletions
diff --git a/day2/session2.tex b/day2/session2.tex index c205c25..75aa4e3 100644 --- a/day2/session2.tex +++ b/day2/session2.tex @@ -51,7 +51,7 @@ \setcounter{time}{0} \newcommand{\inctime}[1]{\addtocounter{time}{#1}{\tiny \thetime\ m}} -\newcommand{\typ}[1]{\lstlisting{#1}} +\newcommand{\typ}[1]{\lstinline{#1}} \newcommand{\kwrd}[1]{ \texttt{\textbf{\color{blue}{#1}}} } @@ -73,7 +73,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Title page -\title[]{Matrices and Arrays\\ \& \\2D Plotting} +\title[]{Numerical Computing with Numpy \& Scipy} \author[FOSSEE Team] {Asokan Pichai\\Prabhu Ramachandran} @@ -114,14 +114,31 @@ \begin{document} \begin{frame}[fragile] - \frametitle{Advanced} + \frametitle{Broadcasting} + +\end{frame} + +\begin{frame}[fragile] + \frametitle{Copies \& Views} + +\end{frame} + +\begin{frame} + \frametitle{More Numpy Functions \& Methods} + More functions \begin{itemize} - \item Only scratched the surface of \num - \item Ufunc methods: \typ{reduce, accumulate, outer, reduceat} - \item Typecasting - \item More functions: \typ{take, choose, where, compress, - concatenate} - \item Array broadcasting and \typ{None} + \item \typ{take} + \item \typ{choose} + \item \typ{where} + \item \typ{compress} + \item \typ{concatenate} + \end{itemize} + Ufunc methods + \begin{itemize} + \item \typ{reduce} + \item \typ{accumulate} + \item \typ{outer} + \item \typ{reduceat} \end{itemize} \end{frame} @@ -155,6 +172,30 @@ \end{itemize} \end{frame} +\begin{frame}[fragile] + \frametitle{Linear Algebra} + +\end{frame} +\begin{frame}[fragile] + \frametitle{ODEs} + +\end{frame} +\begin{frame}[fragile] + \frametitle{Interpolation} + +\end{frame} + +\begin{frame}[fragile] + \frametitle{Signal \& Image Processing} + +\end{frame} + +\begin{frame}[fragile] + \frametitle{Problems} + +\end{frame} + + \end{document} - Numpy arrays (30 mins) |