diff options
author | Amit Sethi | 2010-11-11 23:40:39 +0530 |
---|---|---|
committer | Amit Sethi | 2010-11-11 23:40:39 +0530 |
commit | 9232b799a0d01d92d9332bc09e0d554a55a841e2 (patch) | |
tree | ed19c878ebd47a0e60f915b5d1930b555a985104 | |
parent | 00c3be09a95f7da014a846f61e1091e52f087e1f (diff) | |
download | st-scripts-9232b799a0d01d92d9332bc09e0d554a55a841e2.tar.gz st-scripts-9232b799a0d01d92d9332bc09e0d554a55a841e2.tar.bz2 st-scripts-9232b799a0d01d92d9332bc09e0d554a55a841e2.zip |
Adding plotting data quickref
-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.') |} + |