Quickly computes the inverse of a upper triangular matrix (e.g. a Cholesky factor).

inv_triangular(U)

Details

Equivalent R code:

X.chol.inv <- backsolve(r = X.chol, x = diag(p))

See also