以极坐标显示

时间:2019-01-16 02:33:03

标签: python python-3.x imshow polar-coordinates

我在.dat文件中有带有快照的磁盘模拟数据。我只想绘制一个,但要绘制极坐标。

我有:

rho = np.fromfile(filename).reshape(128,384)
plt.imshow(np.log10(rho),origin='lower',cmap="Oranges",aspect='auto')
plt.colorbar()
plt.show()

enter image description here

我想要这样的东西:

enter image description here

忽略颜色和cmap。它们不是相同的模拟。仅查找磁盘形式。

0 个答案:

没有答案