python
Published on January 26, 2024By DeveloperBreeze
# Import the NumPy library
import numpy as np
# Define two matrices
matrix1 = np.array([[1, 2], [3, 4]])
matrix2 = np.array([[5, 6], [7, 8]])
# Perform matrix multiplication using the dot function
result = np.dot(matrix1, matrix2)
Comments
Please log in to leave a comment.