Compute the singular-value decomposition of a gpuR matrix
svd(x, nu, nv, LINPACK)# S3 method for vclMatrix
svd(x, nu, nv, LINPACK)
# S3 method for gpuMatrix
svd(x, nu, nv, LINPACK)
The SVD decomposition of the matrix. The returned value is a list with the following components:
d a vector containing the singular values of x
u a matrix whose columns contain the left singular vectors of
x
.
v a matrix whose columns contain the right singular vectors of
x
.
A gpuR matrix
ignored
ignored
ignored
Charles Determan Jr.