svd | R Documentation |
SVD factorization.
## 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)
x |
A float matrix. |
nu , nv |
The number of left/right singular vectors to return. |
LINPACK |
Ignored |
The factorization is performed by the LAPACK routine sgesdd()
.
library(float)
x = flrunif(10, 3)
svd(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.