svdJacobiR: SVD using Jacobi algorithm

Description Usage Arguments Details Value Examples

Description

SVD using Jacobi algorithm

Usage

1

Arguments

x

a real nxp matrix

...

other parameters to be passed from JacobiR

Details

Singular values, right singular vectors and left singular vectors of a real nxp matrix using two-sided Jacobi algorithm

Value

a list of three components as for base::svd

Examples

1
2
3
(V <- (matrix(1:30, nrow=5, ncol=6)))
svdJacobiR(V)
all.equal(svdJacobiR(V)$v, base::svd(V)$v)

isglobal-brge/svdParallel documentation built on June 26, 2019, 9:40 p.m.