SciPy - Linear Algebra (scipy.linalg)
What will be the shape of U, s, and VT after running the following code?
import numpy as np from scipy.linalg import svd A = np.array([[1, 2], [3, 4], [5, 6]]) U, s, VT = svd(A, full_matrices=False) print(U.shape, s.shape, VT.shape)
