SciPy - Linear Algebra (scipy.linalg)
What will be the result of this code?
import numpy as np from scipy.linalg import cholesky A = np.array([[1, 2], [2, 1]]) L = cholesky(A)
