Write a NumPy program to compute the multiplication of two given matrixes.
Sample Matrix:
[[1, 0], [0, 1]] [[1, 2], [3, 4]]
import numpy as np p = [[1, 0], [0, 1]] q = [[1, 2], [3, 4]] print("original matrix:") print(p) print(q) result1 = np.dot(p, q) print("Result of the said matrix multiplication:") print(result1) print(result2)
Sample Output:
original matrix: [[1, 0], [0, 1]] [[1, 2], [3, 4]] Result of the said matrix multiplication: [[1 2] [3 4]]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer