diff options
author | Puneeth Chaganti | 2010-11-17 23:24:57 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2010-11-17 23:24:57 +0530 |
commit | 347866ed0d29db61ee062563b1e1616cfb85588c (patch) | |
tree | d5fe9159a195939b5979e804bad3a7f9842a679f /plotting-data/quickref.tex | |
parent | 75034126a8c663fc03d922f41d9bf5051cc7e88d (diff) | |
parent | 66b5c35494866a8c94a3d9dce33dbc40d86542cb (diff) | |
download | st-scripts-347866ed0d29db61ee062563b1e1616cfb85588c.tar.gz st-scripts-347866ed0d29db61ee062563b1e1616cfb85588c.tar.bz2 st-scripts-347866ed0d29db61ee062563b1e1616cfb85588c.zip |
Merged heads.
Diffstat (limited to 'plotting-data/quickref.tex')
-rw-r--r-- | plotting-data/quickref.tex | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plotting-data/quickref.tex b/plotting-data/quickref.tex new file mode 100644 index 0000000..39ede52 --- /dev/null +++ b/plotting-data/quickref.tex @@ -0,0 +1,15 @@ +Creating a Sequence:\\ +{\ex \lstinline| L = [0.1, 0.2, 0.3] |} + +Squaring a sequence:\\ +{\ex \lstinline| tsquare=square(t) |} + +Plotting two list using small dots:\\ +{\ex \lstinline| plot(L,tsquare,'.') |} + +Plotting two list using big dots:\\ +{\ex \lstinline| plot(L,tsquare,'o') |} + +Plotting an errorbar in blue color:\\ +{\ex \lstinline| errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.') |} + |