SciPy - Linear Algebra (scipy.linalg)
What will be the output of this code?
import numpy as np from scipy.linalg import solve A = np.array([[1, 2], [3, 4]]) b = np.array([5, 11]) x = solve(A, b) print(x)
