eigen {float} | R Documentation |
Solve a system of equations or invert a float matrix.
## S4 method for signature 'float32' eigen(x, symmetric, only.values = FALSE, EISPACK = FALSE)
x |
A float vector/matrix. |
symmetric |
Is the matrix symmetric? If not, it will be tested for symmetry with
|
only.values |
Should only the values (and not the vectors) be returned? |
EISPACK |
Ignored. |
A list containing the values and optionally vectors, each stored as floats.
library(float) s = flrunif(10, 3) cp = crossprod(s) eigen(cp)