diff options
author | Nishanth Amuluru | 2010-10-18 21:11:34 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2010-10-18 21:11:34 +0530 |
commit | 5ff51d25821b168672247194a8ba9ce5e62d88f2 (patch) | |
tree | 1f41ee7de294b91e2673b96a9a2cffa433e8e139 /getting-started-strings/quickref.tex | |
parent | e029f60f1a5254f12b32a62e9a00947dcfc16aa5 (diff) | |
parent | 53be576ae08a5ebe40d268f34b33229739396155 (diff) | |
download | st-scripts-5ff51d25821b168672247194a8ba9ce5e62d88f2.tar.gz st-scripts-5ff51d25821b168672247194a8ba9ce5e62d88f2.tar.bz2 st-scripts-5ff51d25821b168672247194a8ba9ce5e62d88f2.zip |
Merged
Diffstat (limited to 'getting-started-strings/quickref.tex')
-rw-r--r-- | getting-started-strings/quickref.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/getting-started-strings/quickref.tex b/getting-started-strings/quickref.tex new file mode 100644 index 0000000..b26d168 --- /dev/null +++ b/getting-started-strings/quickref.tex @@ -0,0 +1,8 @@ +Creating a linear array:\\ +{\ex \lstinline| x = linspace(0, 2*pi, 50)|} + +Plotting two variables:\\ +{\ex \lstinline| plot(x, sin(x))|} + +Plotting two lists of equal length x, y:\\ +{\ex \lstinline| plot(x, y)|} |