powered by
Solve a system of equations or invert a float matrix.
# S4 method for float32 eigen(x, symmetric, only.values = FALSE, EISPACK = FALSE)
A list containing the values and optionally vectors, each stored as floats.
A float vector/matrix.
Is the matrix symmetric? If not, it will be tested for symmetry with isSymmetric(). Note that only symmetric matrices are supported at this time.
isSymmetric()
Should only the values (and not the vectors) be returned?
Ignored.
library(float) s = flrunif(10, 3) cp = crossprod(s) eigen(cp)
Run the code above in your browser using DataLab