Compute the Cholesky factorization of a real, symmetric,
positive-definite square matrix. Returns the lower-left triangular matrix
to match Stan's version. This function is simply an opinionated wrapper of
the base R function, chol()
.
Arguments
- x
A symmetric, positive-definite square matrix.
- ...
Additional parameters to pass to
chol()
.