diff options
author | Shantanu | 2009-12-22 14:10:37 +0530 |
---|---|---|
committer | Shantanu | 2009-12-22 14:10:37 +0530 |
commit | dfd30ccfe16229203702ae0332165e14fdaf80cf (patch) | |
tree | 1521217ba931f93a96ad98c3019110c89a720b8a /day1/cheatsheet2.tex | |
parent | b3821a5ee2fd2b655873c93ad78cd15e899decac (diff) | |
download | workshops-more-scipy-dfd30ccfe16229203702ae0332165e14fdaf80cf.tar.gz workshops-more-scipy-dfd30ccfe16229203702ae0332165e14fdaf80cf.tar.bz2 workshops-more-scipy-dfd30ccfe16229203702ae0332165e14fdaf80cf.zip |
commited changes made for scipy and cheatsheats.
Diffstat (limited to 'day1/cheatsheet2.tex')
-rwxr-xr-x | day1/cheatsheet2.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/cheatsheet2.tex b/day1/cheatsheet2.tex index 0b61e7c..fa76388 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() |