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