plotting-data/quickref.tex
author Amit Sethi
Fri, 12 Nov 2010 02:29:04 +0530
changeset 488 85f049b5ec08
parent 485 fd3902300f20
permissions -rw-r--r--
Some changes to testing and debugging script

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