DEBSOURCES
Skip Quicknav
sources / pycode-browser / 1%3A1.02%2Bgit20181006-3 / Code / Maths / polar.py
12345678
#Example polar.py from pylab import * th = linspace(0,2*pi,100) r = 5 * ones(100) # radius = 5 axis([0, 2*pi, 0, 10]) polar(th,r) show()