plotting_data/quickref.tex
author Anoop Jacob Thomas<anoop@fossee.in>
Sat, 18 Dec 2010 12:54:49 +0530
changeset 524 b602b4dcc87d
parent 522 d33698326409
permissions -rw-r--r--
Made some changes to the script embellishing a plot, but it still needs changes.

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