calcSVD(): | Given a data matrix X of size (m,n), m >=n, this function
allows to compute |
| the singular value decomposition. |
calcPCA(): | Given a data matrix X of size (m,n), m >=n, this function
allows to\ compute |
| the principal component analysis. |
mGS(): | Modified Gramf-Schmidt orthogonalization method, R code,
internal use. |
mGSc(): | Modified Gramf-Schmidt orthogonalization method, C code,
internal use. |
eigenV(): | Computation of the eigenvectors matrix for a symmetric
square matrix using |
| the power method, R Code, internal use. |
eigenVc(): | Computation of the eigenvectors matrix for a symmetric
square matrix using |
| the power method, C Code, internal use. |