matplotlib 极坐标图中的箭头

uwopmtnx  于 2023-10-24  发布在  其他
关注(0)|答案(1)|浏览(90)

我试图绘制串联R-L-C电路中电阻、电容和电感两端电压的相量,我已经完成了所有的计算,只需要普通的ax.plot(theta,r,....)就可以得到一个不错的图。
我想让相量向量看起来像箭头。我一直试图使用ax.arrow(0,0,theta,magnitude),但它看起来仍然像一条线。我写的代码的要点是:GIST
我创建的图像是x1c 0d1x
我尝试遵循我在this list上找到的示例,因为它与我想要实现的非常相似,它生成了以下图像:

当我在电脑上运行他们的代码时,

我在Xubuntu 14.04上运行matplotlib 1.3.1。我确实看到我使用的示例在2009年使用matplotlib 0.99。
如果你能帮忙的话,我将不胜感激。

ivqmmu1c

ivqmmu1c1#

箭头尺寸太大,这:

import matplotlib
import numpy as np
import matplotlib.pyplot as plt

print "matplotlib.__version__   = ", matplotlib.__version__
print "matplotlib.get_backend() = ", matplotlib.get_backend()

# radar green, solid grid lines
plt.rc('grid', color='#316931', linewidth=1, linestyle='-')
plt.rc('xtick', labelsize=15)
plt.rc('ytick', labelsize=15)

# force square figure and square axes looks better for polar, IMO
width, height = matplotlib.rcParams['figure.figsize']
size = min(width, height)
# make a square figure
fig = plt.figure(figsize=(size, size))
ax = fig.add_axes([0.1, 0.1, 0.8, 0.8], polar=True, axisbg='#d5de9c')

r = np.arange(0, 3.0, 0.01)
theta = 2*np.pi*r
ax.plot(theta, r, color='#ee8d18', lw=3)
ax.set_rmax(2.0)
plt.grid(True)

ax.set_title("And there was much rejoicing!", fontsize=20)
#This is the line I added:
arr1 = plt.arrow(0, 0.5, 0, 1, alpha = 0.5, width = 0.015,
                 edgecolor = 'black', facecolor = 'green', lw = 2, zorder = 5)

# arrow at 45 degree
arr2 = plt.arrow(45/180.*np.pi, 0.5, 0, 1, alpha = 0.5, width = 0.015,
                 edgecolor = 'black', facecolor = 'green', lw = 2, zorder = 5)

plt.show()

生产:

好点了吗?:)

相关问题