diff options
author | Amit Sethi | 2010-11-08 01:54:34 +0530 |
---|---|---|
committer | Amit Sethi | 2010-11-08 01:54:34 +0530 |
commit | e09d107f6a3c7ddd290e4390158f682c1ca2b0b4 (patch) | |
tree | 37e48e400be7bd2d0281ec1b4bfb126681dd78f5 /testing-debugging/quickref.tex | |
parent | 3a20d5d7669a13bc0a1b75bbf6b97e5eff6c408e (diff) | |
download | st-scripts-e09d107f6a3c7ddd290e4390158f682c1ca2b0b4.tar.gz st-scripts-e09d107f6a3c7ddd290e4390158f682c1ca2b0b4.tar.bz2 st-scripts-e09d107f6a3c7ddd290e4390158f682c1ca2b0b4.zip |
Adding testing and debugging files
Diffstat (limited to 'testing-debugging/quickref.tex')
-rw-r--r-- | testing-debugging/quickref.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testing-debugging/quickref.tex b/testing-debugging/quickref.tex new file mode 100644 index 0000000..b26d168 --- /dev/null +++ b/testing-debugging/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)|} |