當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Matplotlib.axes.Axes.arrow()用法及代碼示例


Matplotlib是Python中的一個庫,它是數字的-NumPy庫的數學擴展。軸類包含大多數圖形元素:Axis,Tick,Line2D,Text,Polygon等,並設置坐標係。 Axes實例通過callbacks屬性支持回調。

matplotlib.axes.Axes.arrow()函數

matplotlib庫的axiss模塊中的Axes.arrow()函數也用於向軸添加箭頭。此函數用於從(x,y)到(x + dx,y + dy)繪製箭頭

用法:


Axes.arrow(self, x, y, dx, dy, **kwargs)

參數:此方法接受以下描述的參數:

  • x, y:這些參數是箭頭基的x和y坐標。
  • dx, dy:這些參數是箭頭沿x和y方向的長度。

返回值:此方法返回作為創建的FancyArrow對象的箭頭。

以下示例說明了matplotlib.axes中的matplotlib.axes.Axes.arrow()函數:

示例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
  
ax = plt.axes() 
ax.arrow(0, 0, 0.6, 0.7, head_width = 0.05,  
         head_length = 0.1) 
  
ax.set_title('matplotlib.axes.Axes.arrow() Example',  
             fontsize = 14, fontweight ='bold') 
  
plt.show()

輸出:

示例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
  
ax = plt.axes() 
ax.arrow(6, 7, -2.5, -2.5, head_width = 0.5, 
         head_length = 0.5, fc ='g', ec ='g') 
ax.set_title('matplotlib.axes.Axes.arrow() Example', 
              fontsize = 14, fontweight ='bold') 
   
ax.set(xlim =(1, 10), ylim =(1, 10)) 
ax.set_xlabel("X-Axis") 
ax.set_ylabel("Y-Axis") 
  
plt.show()

輸出:




相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 Matplotlib.axes.Axes.arrow() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。