Matplotlib – Quiver Plot
曲线图将速度向量显示为箭头,其分量为(u,v),位于(x,y)点。
quiver(x,y,u,v)
上述命令在x和y中每一对相应的元素指定的坐标上将向量绘制成箭头。
参数
下表列出了Quiver绘图的不同参数,包括
x | 1D或2D阵列,序列。箭头位置的x坐标 |
---|---|
y | 一维或二维数组,序列。箭头位置的y坐标 |
u | 一维或二维数组,序列。箭头向量的x分量 |
v | 一维或二维数组,序列。箭头向量的y分量 |
c | 一维或二维数组,序列。箭头的颜色 |
The following code draws a simple quiver plot −
import matplotlib.pyplot as plt
import numpy as np
x,y = np.meshgrid(np.arange(-2, 2, .2), np.arange(-2, 2, .25))
z = x*np.exp(-x**2 - y**2)
v, u = np.gradient(z, .2, .2)
fig, ax = plt.subplots()
q = ax.quiver(x,y,u,v)
plt.show()