cholesky
Lower-triangular Cholesky decomposition A = L * LT, returned as a fresh matrix, from the installed backend; see Lapack.cholesky.
Throws at the first non-positive pivot unless policy says otherwise; see CholeskyPolicy. The old default regularized silently, which returned a factor of a matrix that was not the one passed in.
Historic note: what used to be cholesky(regularizeNonPD = true) is now entry instead of a crash. Pass false for strict validation: the call then throws IllegalArgumentException at the first non-PD pivot.
invert
A⁻¹ from an LU factorization (LAPACK dgetri); see LinearAlgebra.invert.
invertSpd
Invert an SPD matrix from its Cholesky factor; see Lapack.invertSpd.
solveSpd
Solve A * x = b given L = chol(A); see Lapack.solveSpd.