diff options
author | Amit Sethi | 2010-10-26 16:08:02 +0530 |
---|---|---|
committer | Amit Sethi | 2010-10-26 16:08:02 +0530 |
commit | c8175a8b193cf0b093540c3b8bf0272c15c16d3a (patch) | |
tree | 6a67c9b3122c710b50f36f89c7b57a611c3c5cf2 /getting-started-with-symbolics/quickref.tex | |
parent | bca2280d4b9f140fb627bedf5b0cec996274bb9e (diff) | |
download | st-scripts-c8175a8b193cf0b093540c3b8bf0272c15c16d3a.tar.gz st-scripts-c8175a8b193cf0b093540c3b8bf0272c15c16d3a.tar.bz2 st-scripts-c8175a8b193cf0b093540c3b8bf0272c15c16d3a.zip |
changed the name of symbolics to getting started with symbolics
Diffstat (limited to 'getting-started-with-symbolics/quickref.tex')
-rw-r--r-- | getting-started-with-symbolics/quickref.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/getting-started-with-symbolics/quickref.tex b/getting-started-with-symbolics/quickref.tex new file mode 100644 index 0000000..b26d168 --- /dev/null +++ b/getting-started-with-symbolics/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)|} |