svd: SVD

svdR Documentation

SVD

Description

SVD factorization.

Usage

## S4 method for signature 'float32'
La.svd(x, nu = min(n, p), nv = min(n, p))

## S4 method for signature 'float32'
svd(x, nu = min(n, p), nv = min(n, p), LINPACK = FALSE)

Arguments

x

A float matrix.

nu, nv

The number of left/right singular vectors to return.

LINPACK

Ignored

Details

The factorization is performed by the LAPACK routine sgesdd().

Examples

library(float)

x = flrunif(10, 3)
svd(x)


float documentation built on Feb. 16, 2023, 6:43 p.m.