From 534604c38b300b6b419362c487cbf779e7f76ea8 Mon Sep 17 00:00:00 2001 From: Shantanu Choudhary Date: Tue, 22 Dec 2009 14:10:37 +0530 Subject: commited changes made for scipy and cheatsheats. --- day1/session4.tex | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'day1/session4.tex') diff --git a/day1/session4.tex b/day1/session4.tex index 3cff99c..33f1f68 100644 --- a/day1/session4.tex +++ b/day1/session4.tex @@ -79,7 +79,7 @@ \author[FOSSEE] {FOSSEE} \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} -\date[] {7 November, 2009\\Day 1, Session 4} +\date[] {14 December, 2009\\Day 1, Session 4} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} @@ -287,8 +287,6 @@ In []: a = imread('lena.png') In []: imshow(a) Out[]: -In []: a.shape -Out[]: (512, 512, 4) \end{lstlisting} \end{small} \begin{itemize} @@ -317,6 +315,11 @@ Out[]: \begin{frame}[fragile] \frametitle{Transpose of a Matrix} \begin{lstlisting} +In []: a = array([[ 1, 1, 2, -1], + ...: [ 2, 5, -1, -9], + ...: [ 2, 1, -1, 3], + ...: [ 1, -3, 2, 7]]) + In []: a.T Out[]: array([[ 1, 2, 2, 1], -- cgit From c98b90fe1a9ea076167277b341989daca59da2af Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti Date: Mon, 4 Jan 2010 19:08:48 +0530 Subject: Changes at scipy.in --- day1/session4.tex | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'day1/session4.tex') diff --git a/day1/session4.tex b/day1/session4.tex index 33f1f68..78e03a8 100644 --- a/day1/session4.tex +++ b/day1/session4.tex @@ -488,7 +488,14 @@ Out[]: array([-1., 8., -1.]) \frametitle{\typ{lstsq}} \begin{itemize} \item We need to fit a line through points for the equation $T^2 = m \cdot L+c$ -\item In matrix form, the equation can be represented as $T^2 = A \cdot p$, where A is +\item In matrix form, the equation can be represented as $T_{sq} = A \cdot p$, where $T_{sq}$ is + $\begin{bmatrix} + T^2_1 \\ + T^2_2 \\ + \vdots\\ + T^2_N \\ + \end{bmatrix}$ +, A is $\begin{bmatrix} L_1 & 1 \\ L_2 & 1 \\ -- cgit From 0b19439dc11ce0c1b09f82eec22e773cca815e11 Mon Sep 17 00:00:00 2001 From: Shantanu Choudhary Date: Mon, 4 Jan 2010 19:54:26 +0530 Subject: Changed dates in all slides. --- day1/session4.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'day1/session4.tex') diff --git a/day1/session4.tex b/day1/session4.tex index 78e03a8..bfff165 100644 --- a/day1/session4.tex +++ b/day1/session4.tex @@ -79,7 +79,7 @@ \author[FOSSEE] {FOSSEE} \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} -\date[] {14 December, 2009\\Day 1, Session 4} +\date[] {11 January, 2010\\Day 1, Session 4} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} -- cgit