Learn R Programming

gpuR (version 2.0.6)

svd: Singular Value Decomposition of a gpuR matrix

Description

Compute the singular-value decomposition of a gpuR matrix

Usage

svd(x, nu, nv, LINPACK)

# S3 method for vclMatrix svd(x, nu, nv, LINPACK)

# S3 method for gpuMatrix svd(x, nu, nv, LINPACK)

Value

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.

Arguments

x

A gpuR matrix

nu

ignored

nv

ignored

LINPACK

ignored

Author

Charles Determan Jr.

See Also