Để có được sản phẩm Kronecker của hai mảng, hãy sử dụng phương thức numpy.kron () trong Python Numpy.
Hàm giả định rằng số kích thước của a và b là như nhau, nếu cần, ưu tiên kích thước nhỏ nhất bằng các kích thước. Nếu a.shape =(r0, r1, .., rN) và b.shape =(s0, s1, ..., sN), sản phẩm Kronecker có hình dạng (r0 * s0, r1 * s1, ..., rN * SN). Các phần tử là sản phẩm của các phần tử froma và b, được tổ chức một cách rõ ràng bởi -
kron(a,b)[k0,k1,...,kN] = a[i0,i1,...,iN] * b[j0,j1,...,jN]
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 hai mảng rỗng bằng phương thức array () -
arr1 = np.array([1, 10, 100]) arr2 = np.array([5, 6, 7])
Hiển thị các mảng -
print("Array1...\n",arr1) print("\nArray2...\n",arr2)
Kiểm tra Kích thước của cả hai mảng -
print("\nDimensions of Array1...\n",arr1.ndim) print("\nDimensions of Array2...\n",arr2.ndim)
Kiểm tra Hình dạng của cả hai mảng -
print("\nShape of Array1...\n",arr1.shape) print("\nShape of Array2...\n",arr2.shape)
Để nhận sản phẩm Kronecker của hai mảng, hãy sử dụng phương thức numpy.kron () trong Python -
print("\nResult (Kronecker product)...\n",np.kron(arr1, arr2))
Ví dụ
import numpy as np # Creating two numpy arrays using the array() method arr1 = np.array([1, 10, 100]) arr2 = np.array([5, 6, 7]) # Display the arrays print("Array1...\n",arr1) print("\nArray2...\n",arr2) # Check the Dimensions of both the array print("\nDimensions of Array1...\n",arr1.ndim) print("\nDimensions of Array2...\n",arr2.ndim) # Check the Shape of both the array print("\nShape of Array1...\n",arr1.shape) print("\nShape of Array2...\n",arr2.shape) # To get the Kronecker product of two arrays, use the numpy.kron() method in Python Numpy print("\nResult (Kronecker product)...\n",np.kron(arr1, arr2))
Đầu ra
Array1... [ 1 10 100] Array2... [5 6 7] Dimensions of Array1... 1 Dimensions of Array2... 1 Shape of Array1... (3,) Shape of Array2... (3,) Result (Kronecker product)... [ 5 6 7 50 60 70 500 600 700]