This is documentation for an old release of SciPy (version 0.11.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Compute the largest k singular values/vectors for a sparse matrix.
Parameters : | A : sparse matrix
k : int, optional
ncv : integer
tol : float, optional
|
---|
Notes
This is a naive implementation using an ARPACK as eigensolver on A.H * A or A * A.H, depending on which one is more efficient.