basic-plot.txt
changeset 13 847f9aefa7d4
parent 11 eafc653206d8
child 16 cdcad776b360
equal deleted inserted replaced
12:a1bf4c1dc3e0 13:847f9aefa7d4
   155 In []: plot(x, cos(x), 'ko')
   155 In []: plot(x, cos(x), 'ko')
   156 
   156 
   157 In []: clf()
   157 In []: clf()
   158 
   158 
   159 A plot using dashed lines can be generated by passing the '--' parameter
   159 A plot using dashed lines can be generated by passing the '--' parameter
   160 In []: plot(x, y, '--')
   160 In []: plot(x, sin(x), '--')
   161 
   161 
   162 You may look at more options related to colors and type of lines using plot?
   162 You may look at more options related to colors and type of lines using plot?
   163 
   163 
   164 In []: clf()
   164 In []: clf()
   165 
   165