SciPy - Linear Algebra (scipy.linalg)
What is the issue with this code?
import numpy as np from scipy.linalg import solve A = np.array([[1, 3], [2, 6]]) b = np.array([4, 8]) x = solve(A, b) print(x)
