manipulating-lists/quickref.tex
author Puneeth Chaganti <punchagan@fossee.in>
Wed, 13 Oct 2010 11:12:18 +0530
changeset 312 8cb703eee88d
child 423 0f0f4993cffe
permissions -rw-r--r--
Manipulating lists LO - script and questions.

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