Description Usage Arguments Details Value Examples
SVD using Jacobi algorithm
1 | svdJacobiR(x, ...)
|
x |
a real nxp matrix |
... |
other parameters to be passed from JacobiR |
Singular values, right singular vectors and left singular vectors of a real nxp matrix using two-sided Jacobi algorithm
a list of three components as for base::svd
1 2 3 | (V <- (matrix(1:30, nrow=5, ncol=6)))
svdJacobiR(V)
all.equal(svdJacobiR(V)$v, base::svd(V)$v)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.