Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

float (version 0.3-3)

svd: SVD

Description

SVD factorization.

Usage

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

# S4 method for 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

Run this code
library(float)

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

Run the code above in your browser using DataLab