chol {float} | R Documentation |
chol
Description
Cholesky factorization for a float vector/matrix.
Usage
## S4 method for signature 'float32'
chol(x)
Arguments
x |
A float vector/matrix. |
Value
A float vector/matrix.
Examples
library(float)
s = flrunif(10, 3)
cp = crossprod(s)
chol(cp)
[Package float version 0.3-2 Index]