plotting_data/quickref.tex
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 02 Dec 2010 14:43:42 +0530
changeset 523 54bdda4aefa5
parent 522 d33698326409
permissions -rw-r--r--
Renamed some LOs and other minor corrections.

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