Implementation of the randomized SVD policy. More...
Public Member Functions | |
RandomizedSVDPolicy (const size_t iteratedPower=0, const size_t maxIterations=2) | |
Use randomized SVD method to perform the principal components analysis (PCA). More... | |
void | Apply (const arma::mat &data, const arma::mat ¢eredData, arma::mat &transformedData, arma::vec &eigVal, arma::mat &eigvec, const size_t rank) |
Apply Principal Component Analysis to the provided data set using the randomized SVD. More... | |
size_t | IteratedPower () const |
Get the size of the normalized power iterations. More... | |
size_t & | IteratedPower () |
Modify the size of the normalized power iterations. More... | |
size_t | MaxIterations () const |
Get the number of iterations for the power method. More... | |
size_t & | MaxIterations () |
Modify the number of iterations for the power method. More... | |
Implementation of the randomized SVD policy.
Definition at line 26 of file randomized_svd_method.hpp.
|
inline |
Use randomized SVD method to perform the principal components analysis (PCA).
iteratedPower | Size of the normalized power iterations (Default: rank + 2). |
maxIterations | Number of iterations for the power method (Default: 2). |
Definition at line 38 of file randomized_svd_method.hpp.
|
inline |
Apply Principal Component Analysis to the provided data set using the randomized SVD.
data | Data matrix. |
centeredData | Centered data matrix. |
transformedData | Matrix to put results of PCA into. |
eigVal | Vector to put eigenvalues into. |
eigvec | Matrix to put eigenvectors (loadings) into. |
rank | Rank of the decomposition. |
Definition at line 57 of file randomized_svd_method.hpp.
References RandomizedSVD::Apply().
|
inline |
Get the size of the normalized power iterations.
Definition at line 81 of file randomized_svd_method.hpp.
|
inline |
Modify the size of the normalized power iterations.
Definition at line 83 of file randomized_svd_method.hpp.
|
inline |
Get the number of iterations for the power method.
Definition at line 86 of file randomized_svd_method.hpp.
|
inline |
Modify the number of iterations for the power method.
Definition at line 88 of file randomized_svd_method.hpp.