SciPy - Linear Algebra (scipy.linalg)
What is the output of this code?
import numpy as np from scipy.linalg import lu A = np.array([[4, 3], [6, 3]]) P, L, U = lu(A) print(np.round(L, 2))
