diff options
author | Puneeth Chaganti | 2010-10-13 11:15:37 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2010-10-13 11:15:37 +0530 |
commit | 0a23ec7bac01a403ad4f00b27e0b8a0357368616 (patch) | |
tree | ea5aeb4a121bca49f80e0dce858e87b3006cefff /getting-started-strings/quickref.tex | |
parent | 7053b6187cd170b386b3de2e458208759f55ebc3 (diff) | |
parent | be31ddd2dd2772ab91df9e15ceb46d6bf6277400 (diff) | |
download | st-scripts-0a23ec7bac01a403ad4f00b27e0b8a0357368616.tar.gz st-scripts-0a23ec7bac01a403ad4f00b27e0b8a0357368616.tar.bz2 st-scripts-0a23ec7bac01a403ad4f00b27e0b8a0357368616.zip |
Merged heads.
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)|} |