我正在学习post。
这是我的代码
f, ax = plt.subplots()
ax.set_xlim([-1, 1])
ax.set_ylim([-1, 1])
Q = ax.quiver(0,0,0,1)
qk = plt.quiverkey(Q, .8, .8, 5, r'$2 \frac{m}{s}$', labelpos='E',
coordinates='figure', color='r')
我需要的只是红色的(带有标签的箭头),有没有办法在没有颤动的情况下绘制颤动键或将颤动隐藏在matplotlib中?