Để tính định thức của một mảng trong đại số tuyến tính, hãy sử dụng np.linalg.det () trong Python Numpy. Tham số đầu tiên, a là mảng đầu vào để tính toán các định thức. Phương thức trả về định thức.
Các bước
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import numpy as np
Tạo một mảng -
arr = np.array([[ 5, 10], [12, 18]])
Hiển thị mảng -
print("Our Array...\n",arr) Kiểm tra các thứ nguyên -
print("\nDimensions of our Array...\n",arr.ndim) Lấy Datatype -
print("\nDatatype of our Array object...\n",arr.dtype) Lấy hình dạng -
print("\nShape of our Array object...\n",arr.shape) Để tính toán định thức của một mảng trong đại số tuyến tính, hãy sử dụng np.linalg.det () trong Python Numpy -
print("\nResult (determinant)...\n",np.linalg.det(arr)) Ví dụ
import numpy as np
# Create an array
arr = np.array([[ 5, 10], [12, 18]])
# 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 Compute the determinant of an array in linear algebra, use the np.linalg.det() in Python Numpy.
print("\nResult (determinant)...\n",np.linalg.det(arr)) Đầu ra
Our Array... [[ 5 10] [12 18]] Dimensions of our Array... 2 Datatype of our Array object... int64 Shape of our Array object... (2, 2) Result (determinant)... -30.000000000000014