getting-started-with-lists/quickref.tex
changeset 320 223044cf254f
parent 213 6b10318465d4
child 342 588b681e70c6
equal deleted inserted replaced
231:e78c284d644b 320:223044cf254f
       
     1 Creating a linear array:\\
       
     2 {\ex \lstinline|    x = linspace(0, 2*pi, 50)|}
       
     3 
       
     4 Plotting two variables:\\
       
     5 {\ex \lstinline|    plot(x, sin(x))|}
       
     6 
       
     7 Plotting two lists of equal length x, y:\\
       
     8 {\ex \lstinline|    plot(x, y)|}