箭袋matplotlib:具有相同大小的箭头

时间:2020-03-30 01:27:55

标签: python matplotlib normalize

我正在尝试使用颤动进行绘图,但是我希望箭头的大小都相同。

我使用以下输入:

q = ax0.quiver(x, y, dx, dy, units='xy' ,scale=1) 

但是即使添加了诸如norm ='true'或Normalize ='true'之类的选项,箭头也不会被规范化

有人知道该怎么做吗?谢谢

1 个答案:

答案 0 :(得分:1)

不确定是否可以通过向plt.quiver显式提供kwarg来实现此目的,但是快速解决方法如下:

原始图

x = np.arange(10)
y = np.arange(10)
xx, yy = np.meshgrid(x,y)
u = np.random.uniform(low=-1, high=1, size=(9,9))
v = np.random.uniform(low=-1, high=1, size=(9,9))
plt.quiver(xx, yy, u, v)

original

归一化图

r = np.power(np.add(np.power(u,2), np.power(v,2)),0.5) #could do (u**2+v**2)**0.5, other ways...
plt.quiver(xx, yy, u/r, v/r)

enter image description here

这只是通过向量的大小对向量的u和v分量进行归一化,从而保持正确的方向,但是将每个箭头的大小缩小到1