# HG changeset patch # User Amit Sethi # Date 1289499299 -19800 # Node ID 591369704df07e432773046a43ba8d63c660ab28 # Parent fd3902300f202a37a72a2594f6150cdd73d0b865# Parent a1828587a6174adb4e8cf18c26692abe3f0509c4 Mergind heads diff -r a1828587a617 -r 591369704df0 plotting-data/quickref.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plotting-data/quickref.tex Thu Nov 11 23:44:59 2010 +0530 @@ -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.') |} +