使用愛因斯坦求和約定在 Python 中提取矩陣的對角線
einsum() 方法對運算元評估愛因斯坦求和約定。使用愛因斯坦求和約定,許多常見的多分量線性代數陣列操作可以用簡單的方式表示。在隱式模式下,einsum 計算這些值。
在顯式模式下,einsum 透過停用或強制對指定下標標籤進行求和,提供了進一步的靈活性來計算可能不被認為是經典愛因斯坦求和運算的其他陣列運算。要使用愛因斯坦求和約定提取矩陣的對角線,請在 Python 中使用 numpy.einsum() 方法。
第一個引數是下標。它指定作為逗號分隔的下標標籤列表的求和下標。第二個引數是運算元。這些是運算的陣列。
步驟
首先,匯入所需的庫:
import numpy as np
使用 arange() 和 reshape() 方法建立一個 numpy 陣列:
arr = np.arange(16).reshape(4,4)
顯示陣列:
print("Our Array...\n",arr)
檢查維度:
print("\nDimensions of our Array...\n",arr.ndim)
獲取資料型別:
print("\nDatatype of our Array object...\n",arr.dtype)
獲取形狀:
print("\nShape of our Array object...\n",arr.shape)
要使用愛因斯坦求和約定提取矩陣的對角線,請使用 numpy.einsum() 方法:
print("\nResult...\n",np.einsum('ii->i', arr))
示例
import numpy as np # Creating a numpy array using the arange() and reshape() method arr = np.arange(16).reshape(4,4) # Display the array print("Our Array...\n",arr) # Check the Dimensions print("\nDimensions of our Array...\n",arr.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",arr.dtype) # Get the Shape print("\nShape of our Array object...\n",arr.shape) # To extract the diagonal of a matrix with Einstein summation convention, use the numpy.einsum() method in Python. print("\nResult...\n",np.einsum('ii->i', arr))
輸出
Our Array... [[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11] [12 13 14 15]] Dimensions of our Array... 2 Datatype of our Array object... int64 Shape of our Array object... (4, 4) Result... [ 0 5 10 15]
廣告