SciPy - Linear Algebra (scipy.linalg)
What is the issue with this code snippet?
import numpy as np from scipy.linalg import cholesky A = np.array([[2, -1], [-1, 2]]) L = cholesky(A) print(L)
