SciPy - Linear Algebra (scipy.linalg)
Given the code:
What is the output?
import numpy as np from scipy.linalg import qr A = np.array([[1, 0], [1, 1]]) Q, R = qr(A) print(np.round(Q, 2))
What is the output?
