我想用箭头连接2D视图中的两个点,但是当我使用ax.quiver或ax.arrow时,它对我的点不起作用。两点是(485.0,759.0)和(485.0,764.0) 这是我的代码:
import numpy as np
import matplotlib.pyplot as plt
fig = plt.figure(2)
ax = fig.add_subplot(111)
ax.quiver(485.0, 759.0, 485.0, 764.0,angles='xy', scale_units='xy', scale = 1)
ax.axis([400, 500, 600, 800])
plt.grid()
plt.draw()
plt.show()
图中的似乎终点没有意义。 enter image description here
答案 0 :(得分:1)
quiver
的第三和第四个输入是x和y方向箭头的长度,而不是箭头的x和y坐标。相反,您需要从起点减去终点以获得长度
ax.quiver(485.0, 759.0, 485.0 - 485.0, 764.0 - 759.0,
angles='xy', scale_units='xy', scale = 1)