Learn R Programming

BigDataStatMeth (version 2.0.3)

svd: Singular Value Decomposition (generic)

Description

S3 generic for svd(). Dispatches to svd.HDF5Matrix for HDF5Matrix objects, and to base::svd() for all others.

Usage

svd(x, nu = min(dim(x)), nv = min(dim(x)), ...)

Value

Named list with components d, u, v.

Arguments

x

A matrix or HDF5Matrix object.

nu

Number of left singular vectors to compute.

nv

Number of right singular vectors to compute.

...

Additional arguments passed to the method.