eigen {float} | R Documentation |
eigen
Description
Solve a system of equations or invert a float matrix.
Usage
## S4 method for signature 'float32'
eigen(x, symmetric, only.values = FALSE, EISPACK = FALSE)
Arguments
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. |
Value
A list containing the values and optionally vectors, each stored as floats.
Examples
library(float)
s = flrunif(10, 3)
cp = crossprod(s)
eigen(cp)
[Package float version 0.3-2 Index]