equal
deleted
inserted
replaced
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 % Tutorial slides on Python. |
2 % Tutorial slides on Python. |
3 % |
3 % |
4 % Author: Prabhu Ramachandran <prabhu at aero.iitb.ac.in> |
4 % Author: Prabhu Ramachandran <prabhu at aero.iitb.ac.in> |
5 % Copyright (c) 2005-2008, Prabhu Ramachandran |
5 % Copyright (c) 2005-2009, Prabhu Ramachandran |
6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
7 |
7 |
8 \documentclass[14pt,compress]{beamer} |
8 \documentclass[14pt,compress]{beamer} |
9 %\documentclass[draft]{beamer} |
9 %\documentclass[draft]{beamer} |
10 %\documentclass[compress,handout]{beamer} |
10 %\documentclass[compress,handout]{beamer} |
74 % Title page |
74 % Title page |
75 \title[]{Matrices and Arrays\\ \& \\2D Plotting} |
75 \title[]{Matrices and Arrays\\ \& \\2D Plotting} |
76 |
76 |
77 \author[FOSSEE Team] {Asokan Pichai\\Prabhu Ramachandran} |
77 \author[FOSSEE Team] {Asokan Pichai\\Prabhu Ramachandran} |
78 |
78 |
79 \institute[FOSSEE] {FOSSEE Team} |
79 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
80 \date[] {11, October 2009} |
80 \date[] {11, October 2009} |
81 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
81 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
82 |
82 |
83 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
83 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
84 %\logo{\pgfuseimage{iitmlogo}} |
84 %\logo{\pgfuseimage{iitmlogo}} |
219 \typ{product(x, axis=0)}, |
219 \typ{product(x, axis=0)}, |
220 \typ{dot(a, bp)} |
220 \typ{dot(a, bp)} |
221 \end{itemize} |
221 \end{itemize} |
222 \end{frame} |
222 \end{frame} |
223 |
223 |
224 \end{frame} |
|
225 \begin{frame}[fragile] |
224 \begin{frame}[fragile] |
226 \frametitle{Array math cont.} |
225 \frametitle{Array math cont.} |
227 \begin{itemize} |
226 \begin{itemize} |
228 \item Logical operations: \typ{equal (==)}, \typ{not\_equal (!=)}, |
227 \item Logical operations: \typ{equal (==)}, \typ{not\_equal (!=)}, |
229 \typ{less (<)}, \typ{greater (>)} etc. |
228 \typ{less (<)}, \typ{greater (>)} etc. |