SciPy - Linear Algebra (scipy.linalg)
Identify the error in this code that tries to multiply two matrices using SciPy:
import numpy as np from scipy.linalg import dot A = np.array([[1, 0], [0, 1]]) B = np.array([[4, 1], [2, 2]]) C = dot(A, B) print(C)
