scipy.linalg.lapack.sgesvd#

scipy.linalg.lapack.sgesvd(a[, compute_uv, full_matrices, lwork, overwrite_a]) = <fortran object>#

Wrapper for sgesvd.

Parameters:
ainput rank-2 array(‘f’) with bounds (m,n)
Returns:
urank-2 array(‘f’) with bounds (u0,u1)
srank-1 array(‘f’) with bounds (minmn)
vtrank-2 array(‘f’) with bounds (vt0,vt1)
infoint
Other Parameters:
overwrite_ainput int, optional

Default: 0

compute_uvinput int, optional

Default: 1

full_matricesinput int, optional

Default: 1

lworkinput int, optional

Default: max(MAX(3*minmn+MAX(m,n),5*minmn),1)