DEBSOURCES
Skip Quicknav
sources / pycode-browser / 1%3A1.02%2Bgit20181006-3 / Code / Maths / npsin.py
123456789
#Example npsin.py from pylab import * x = linspace(-pi, pi , 200) y = sin(x) y1 = sin(x*x) plot(x,y) plot(x,y1,'r') show()