SciPy - Sparse Linear Algebra
What is wrong with this code?
from scipy.sparse.linalg import gmres import numpy as np A = np.array([[1,2],[3,4]]) b = np.array([5,6]) x = gmres(A, b) print(x)
