Adding plotting data quickref
authorAmit Sethi
Thu, 11 Nov 2010 23:40:39 +0530
changeset 485 fd3902300f20
parent 468 ac1198488c0e
child 486 591369704df0
Adding plotting data quickref
plotting-data/quickref.tex
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plotting-data/quickref.tex	Thu Nov 11 23:40:39 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.') |}
+