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.