2014-02-21 183 views
-1

我想绘制点,而不是使用python(3.3)和matplotlib在极坐标系上绘制螺旋线(或线)。我安装了numpy和matplotlib。例如,极坐标(4,pi/2)在笛卡尔坐标平面上看起来像(0,4)。使用matplotlib绘制极坐标

+0

鉴于[matplotlib示例](http://matplotlib.org/examples/index.html),[matplotlib图库](http://matplotlib.org/gallery.html#pie_and_polar_charts)和[pyplot手册'polar()'](http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.polar),你已经试过了什么? – Evert

回答

0

你有没有考虑

matplotlib.pyplot.polar(theta_array, r_array, 'k.') 

the manual