Usage
ssvd.iter.thresh(x, method = c("theory", "method"), u.old, v.old,
gamma.u = sqrt(2), gamma.v = sqrt(2), dothres = "hard", r = ncol(u.old),
tol = 1e-08, n.iter = 100, n.boot = 100, sigma = NA, non.orth = FALSE)
Arguments
x
Input matrix, for which one would like to get a sparse SVD.
method
If method = "theory", then a theoretical procedure is adopted which is based on normal assumption on the noise.
If method = "method", then the function bypass the normal assumption by some robust statistics.
These two choices typically give similar solutions, but "theory" is much faster.
u.old
A matrix that contains initial left singular vectors as the columns of the matrix.
v.old
A matrix that contains initial right singular vectors as the columns of the matrix.
gamma.u
When the method="theory", gamma.u=sqrt(2) corresponds to the sqrt(2 log(p)), which is the largest magnitude of p iid standard normals.
If gamma.u is manually set to be smaller or larger than sqrt2, the left singular vectors will be denser or sparser respectively.
gamma.v
When the method="theory", gamma.u=sqrt(2) corresponds to the sqrt(2 log(p)), which is the largest magnitude of p iid standard normals.
If gamma.u is manually set to be smaller or larger than sqrt2, the right singular vectors will be denser or sparser respectively.
dothres
Dothres has two choices, either "hard" or "soft", which means hard-thresholding or soft-thresholding
r
A scaler, the number of components, i.e., the number of singular vectors to be computed.
tol
The tolerance level that determines when the algorithm stops.
n.iter
Maximum number of iterations allowed.
n.boot
Number of bootstrap to estimate the threshold level when method = "method"
sigma
Sigma is a scaler for the noise level. The user can set it to be NA, and the function will estimate it automatically.
non.orth
If non.orth=TRUE, then the last iteration of the algorithm will not involve orthoganolization, which should produce sparse solutions.