Quickies

[categories] [index] [all (527)] [latest]

matplotlib
  1. from pylab import *
    
    x = arange(0, 10, 0.2)
    y = sin(x)
    
    plot(x, y)
    show()