testing-debugging/quickref.tex
changeset 401 abf092be95ef
child 489 bc8d01c3c9b3
equal deleted inserted replaced
400:2259bd43446a 401:abf092be95ef
       
     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)|}