Compute singular values of a matrix.
a : array, shape (M, N)
Matrix to decompose
overwrite_a : boolean
Whether data in a is overwritten (may improve performance)
s: array, shape (K,) :
The singular values, sorted so that s[i] >= s[i+1]. K = min(M, N)
Raises LinAlgError if SVD computation does not converge :
See also
scipy.linalg.svd
scipy.linalg.diagsvd
Enter search terms or a module, class or function name.