summaryrefslogtreecommitdiff
path: root/day1/cheatsheet2.tex
diff options
context:
space:
mode:
authorSantosh G. Vattam2010-01-05 15:23:02 +0530
committerSantosh G. Vattam2010-01-05 15:23:02 +0530
commit40143d0f21438479e204f8c415698fe7c9ac36fe (patch)
tree01ab9ea0019ca45828493ce373737f38240e9279 /day1/cheatsheet2.tex
parente60b5c2290e99fb20d141be90ed5655335a1e8e9 (diff)
parent0b19439dc11ce0c1b09f82eec22e773cca815e11 (diff)
downloadworkshops-40143d0f21438479e204f8c415698fe7c9ac36fe.tar.gz
workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.tar.bz2
workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.zip
Branches merged.
Diffstat (limited to 'day1/cheatsheet2.tex')
-rwxr-xr-xday1/cheatsheet2.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/cheatsheet2.tex b/day1/cheatsheet2.tex
index 58076f6..acffa20 100755
--- a/day1/cheatsheet2.tex
+++ b/day1/cheatsheet2.tex
@@ -29,7 +29,7 @@
\section{Plotting Points with Lists}
\begin{lstlisting}
-In []: x = [0, 1, 2, 3]
+In []: x = [0, 1, 2, 3] # Creating a list
In []: y = [7, 11, 15, 19]
In []: plot(x, y)
In []: clf()