Description Usage Arguments Details Value References See Also Examples
rSVDdpd
returns the singular value decomposition of a matrix with robust
singular values in presence of outliers
1 2 3 4 5 6 7 8 9 10 |
X |
|
alpha |
|
nd |
|
tol |
|
eps |
|
maxiter |
|
initu |
|
initv |
|
The usual singular value decomposition is highly prone to error in presence of outliers, since it tries to minimize the L_2 norm of the errors between the matrix X and its best lower rank approximation. While there is considerable effort to impose robustness using L_1 norm of the errors instead of L_2 norm, such estimation lacks efficiency. Application of density power divergence bridges the gap.
DPD(f|g) = \int f^{(1+α)} - (1 + \frac{1}{α}) \int f^{α}g + \frac{1}{α} \int g^{(1 + α)}
The parameter alpha
should be between 0 and 1, if not, then a warning is shown.
Lower alpha
means less robustness
but more efficiency in estimation, while higher alpha
means high robustness but
less efficiency in estimation. The recommended value of alpha
is 0.3.
The function tries to obtain the best rank one approximation of a matrix by minimizing
this density power divergence of the true errors with that of a normal distribution centered
at the origin.
A list containing different components of the decomposition X = U D V'
d - The robust singular values, namely the diagonal entries of D.
u - The matrix of left singular vectors U. Each column is a singular vector.
v - The matrix of right singular vectors V. Each column is a singular vector.
S. Roy, A. Basu and A. Ghosh (2021), A New Robust Scalable Singular Value Decomposition Algorithm for Video Surveillance Background Modelling https://arxiv.org/abs/2109.10680
1 2 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.