diff options
-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.') |} + |