powered by
Return the inverse of the original matrix using the Cholesky factorization of a float vector/matrix.
# S4 method for float32 chol2inv(x, size = NCOL(x), LINPACK = FALSE)
A float vector/matrix.
The number of columns to use.
Ignored.
library(float) s = flrunif(10, 3) cp = crossprod(s) cp %*% chol2inv(chol(cp))
Run the code above in your browser using DataLab