SciPy - Linear Algebra (scipy.linalg)
What will be the output of the following code?
import numpy as np from scipy.linalg import qr A = np.array([[2, 1], [1, 3]]) Q, R = qr(A) print(np.round(R, 2))
