📜  Python中的 Matplotlib.axes.Axes.barbs()

📅  最后修改于: 2022-05-13 01:54:46.210000             🧑  作者: Mango

Python中的 Matplotlib.axes.Axes.barbs()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。

matplotlib.axes.Axes.barbs()函数

matplotlib 库的 axes 模块中的Axes.barbs()函数也用于绘制倒钩的 2D 字段。

注意:此函数适用于 Matplotlib 版本 >= 3.1

下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.barbs()函数:

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
      
x = np.linspace(0, 15, 5)
  
fig1, axs1 = plt.subplots()
axs1.barbs(x**3, x**3, x * 2, x * 2, x * 3,
           fill_empty = True)
  
axs1.set_title('matplotlib.axes.Axes.barbs()\
 Example', fontsize = 14, fontweight ='bold')
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
      
x = np.linspace(0, 15, 5)
X, Y = np.meshgrid(x, x)
U, V = X**2, Y**2
  
fig1, axs1 = plt.subplots()
axs1.barbs(X, Y, U, V, U * 2, fill_empty = True)
  
axs1.set_title('matplotlib.axes.Axes.barbs()\
 Example', fontsize = 14, fontweight ='bold')
plt.show()

输出: