invertMatrixCholesky
Computes the inverse of a given symmetric, positive-definite matrix using the Cholesky decomposition.
This method assumes that the input matrix is square, symmetric, and positive-definite.
Return
The inverse of the input matrix as a new Matrix
object.
Parameters
matrix
The input matrix to invert. Must be a square, symmetric, and positive-definite matrix.
Throws
if the input matrix is not square, symmetric, or positive-definite.