float (version 0.2-3)

chol: chol

Description

Cholesky factorization for a float vector/matrix.

Usage

# S4 method for float32
chol(x)

Arguments

x

A float vector/matrix.

Value

A float vector/matrix.

Examples

Run this code
# NOT RUN {
library(float)

s = flrunif(10, 3)
cp = crossprod(s)
chol(cp)

# }

Run the code above in your browser using DataCamp Workspace