标签: matplotlib coordinates
我试图使用python(3.3)和matplotlib在极坐标系上绘制点,而不是螺旋(或线)。我安装了numpy和matplotlib。例如,极坐标(4,pi / 2)在笛卡尔坐标平面上看起来像(0,4)。
答案 0 :(得分:0)
您是否考虑过
matplotlib.pyplot.polar(theta_array, r_array, 'k.')
根据the manual?