getting-started-ipython/quickref.tex
changeset 217 b595f90016c5
child 285 7c4855fb8e5f
equal deleted inserted replaced
216:7206fe0c03c5 217:b595f90016c5
       
     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)|}