0

如何将 matplotlib 箭头或 quiver 与如下列表一起使用:

#X, Y, U, V
data = np.array([[1, 2, 0.5, 1],
                 [2, 3, 1, 1.5],
                 [3, 4, 1.5, 1.75],
                 [4, 5, 2, 2],
                 [5, 6, 2.5, 2.5],
                 [6, 8, 3, 3],
                 [7, 9, 3.5, 3.5],
                 [8, 20, 4, 4],
                 [9, 2, 4, 4.5]])

X = data[:, 0]
Y = data[:, 1]
U = data[:, 2]
V = data[:, 3]

目的是在 Xlim 的同一帧中绘制从 (X,Y) 到 (U,V) 的箭头,Ylim = (30,30)。

我在互联网上看到的示例,使用网格来制作箭袋。有什么提示吗?

4

1 回答 1

0

您找到的示例不使用 meshgrid 作为网格,而是用于元素绘图。无论数组具有哪种形状,相同位置的元素都属于一起。

import matplotlib.pyplot as plt
import numpy as np

plt.figure()
plt.title('Arrows scale with plot width, not view')

#X, Y, U, V
data = np.array([[1, 2, 0.5, 1],
                 [2, 3, 1, 1.5],
                 [3, 4, 1.5, 1.75],
                 [4, 5, 2, 2],
                 [5, 6, 2.5, 2.5],
                 [6, 8, 3, 3],
                 [7, 9, 3.5, 3.5],
                 [8, 20, 4, 4],
                 [9, 2, 4, 4.5]])

X = data[:, 0]
Y = data[:, 1]

# If you want to plot vectors starting at X,Y with components U,V
U = data[:, 2]
V = data[:, 3]

# If you want to plot vectors starting at X,Y and ending at U,V
U = data[:, 2] - X
V = data[:, 3] - Y

Q = plt.quiver(X, Y, U, V, units='width')

plt.xlim(0, 30)
plt.ylim(0, 30)

plt.show()

下次请以可用的格式提供您的代码。

于 2018-02-20T12:34:35.953 回答