asa007, a C code which computes the inverse of a symmetric positive definite (SPD) matrix, by Michael Healy.
This is a version of Applied Statistics Algorithm 7.
The algorithm implemented here uses a compressed storage for both the matrix A and the factor U. This saves some storage, but can make computations a little awkward.
The information on this web page is distributed under the MIT license.
asa007 is available in a C version and a C++ version and a Fortran90 version and a MATLAB version and an Octave version and a Python version.
asa006, a C code which computes the Cholesky factorization of a symmetric positive definite matrix. A version of this routine is used by asa007.
asa047, a C code which implements the Nelder-Mead minimization algorithm, and uses a version of asa007 for the computation.
linpack_d, a C code which includes routines to compute the inverse of symmetric positive definite (SPD) matrix using double precision real arithmetic.
Michael Healy