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


Python Matplotlib.pyplot.tricontour()用法及代碼示例


Matplotlib是Python中的一個庫,它是數字的-NumPy庫的數學擴展。 Pyplot是Matplotlib模塊的基於狀態的接口,該模塊提供了MATLAB-like接口。在Pyplot中可以使用各種圖,例如線圖,輪廓圖,直方圖,散點圖,3D圖等。

樣例代碼

# sample code 
import matplotlib.pyplot as plt  
    
plt.plot([1, 2, 3, 4], [16, 4, 1, 8])  
plt.show() 

輸出:



matplotlib.pyplot.tricontour()函數

matplotlib庫的pyplot模塊中的tricontour()函數用於在非結構化三角形網格上繪製輪廓。

用法:
matplotlib.pyplot.tricontour(*args, **kwargs)

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

  • x, y:這些參數是要繪製的數據的x和y坐標。
  • triangulation:此參數是matplotlib.tri.Triangulation對象。
  • Z:此參數是輪廓值的數組,三角測量中每個點一個。
  • **kwargs:此參數是文本屬性,用於控製標簽的外觀。

所有剩餘argskwargs與matplotlib.pyplot相同。 pcolor()。

返回值:這將返回包含以下內容的2 Line2D的列表:

  • 為三角形邊繪製的線。
  • 為三角形節點繪製的標記

以下示例說明了matplotlib.pyplot中的matplotlib.pyplot.tricontour()函數:

範例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import matplotlib.tri as mtri 
import numpy as np 
      
# Create triangulation. 
x = np.asarray([0, 1, 2, 3, 0.5, 
                1.5, 2.5, 1, 2, 1.5]) 
  
y = np.asarray([0, 0, 0, 0, 1.0,  
                1.0, 1.0, 2, 2, 3.0]) 
  
triangles = [[0, 1, 4], [1, 5, 4], 
             [2, 6, 5], [4, 5, 7], 
             [5, 6, 8], [5, 8, 7], 
             [7, 8, 9], [1, 2, 5],  
             [2, 3, 6]] 
  
triang = mtri.Triangulation(x, y, triangles) 
z = np.cos(3 * x) * np.cos(6 * y)+np.sin(6 * x) 
      
fig, axs = plt.subplots() 
t = axs.tricontourf(triang, z) 
axs.tricontour(triang, z, colors ='white') 
fig.colorbar(t) 
  
fig.suptitle('matplotlib.pyplot.tricontour() Example')  
plt.show()

輸出:

範例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import matplotlib.tri as tri 
import numpy as np 
     
n_angles = 26
n_radii = 10
min_radius = 0.35
radii = np.linspace(min_radius,  
                    0.95, n_radii) 
   
angles = np.linspace(0, 3 * np.pi, 
                     n_angles,  
                     endpoint = False) 
  
angles = np.repeat(angles[..., np.newaxis], 
                   n_radii, axis = 1) 
  
angles[:, 1::2] += np.pi / n_angles 
   
x = (10 * radii * np.cos(angles)).flatten() 
y = (10 * radii * np.sin(angles)).flatten() 
z = (np.cos(16 * radii) * np.cos(3 * angles)+np.sin(8 * radii)).flatten() 
   
triang = tri.Triangulation(x, y) 
   
triang.set_mask(np.hypot(x[triang.triangles].mean(axis = 1), 
                         y[triang.triangles].mean(axis = 1)) 
                < min_radius) 
     
fig1, ax1 = plt.subplots() 
ax1.set_aspect('equal') 
tcf = ax1.tricontourf(triang, z) 
fig1.colorbar(tcf) 
ax1.tricontour(triang, z, colors ='k') 
fig1.suptitle('matplotlib.pyplot.tricontour() Example')  
  
plt.show()

輸出:




相關用法


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