From 9232b799a0d01d92d9332bc09e0d554a55a841e2 Mon Sep 17 00:00:00 2001 From: Amit Sethi Date: Thu, 11 Nov 2010 23:40:39 +0530 Subject: Adding plotting data quickref --- plotting-data/quickref.tex | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plotting-data/quickref.tex 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.') |} + -- cgit