manipulating-lists/quickref.tex
author amit
Thu, 21 Oct 2010 00:22:42 +0530
changeset 342 588b681e70c6
parent 312 8cb703eee88d
child 423 0f0f4993cffe
permissions -rw-r--r--
Added a few large questions and quickrefs

Creating a linear array:\\
{\ex \lstinline|    x = linspace(0, 2*pi, 50)|}

Plotting two variables:\\
{\ex \lstinline|    plot(x, sin(x))|}

Plotting two lists of equal length x, y:\\
{\ex \lstinline|    plot(x, y)|}