day1/session3.tex
changeset 185 e59ab9ab1a89
parent 184 9efa777af2e2
child 192 1574b3bc6be7
child 199 85a799d90c6a
--- a/day1/session3.tex	Tue Oct 27 12:50:19 2009 +0530
+++ b/day1/session3.tex	Tue Oct 27 13:05:40 2009 +0530
@@ -303,7 +303,7 @@
 \frametitle{Dealing with data whole-sale}
 \begin{lstlisting}
 In []: for t in T:
- ....:     Tsq.append(t*t)
+ ....:     TSq.append(t*t)
 \end{lstlisting}
 \begin{itemize}
 \item This is not very efficient
@@ -313,7 +313,7 @@
 \begin{lstlisting}
 In []: L = array(L)
 In []: T = array(T)
-In []: Tsq = T*T
+In []: TSq = T*T
 \end{lstlisting}
 \end{frame}
 
@@ -401,7 +401,7 @@
 \item Along with a lot of things, it returns the least squares solution
 \end{itemize}
 \begin{lstlisting}
-In []: coef, res, r, s = lstsq(A,Tsq)
+In []: coef, res, r, s = lstsq(A,TSq)
 \end{lstlisting}
 \end{frame}
 
@@ -424,6 +424,9 @@
   \begin{itemize}
    \item Dictionaries
    \item Drawing pie charts
+   \item Arrays
+   \item Least Square fitting
+   \item Intro to Matrices
   \end{itemize}
 \end{frame}
 \end{document}