ASA007 is a FORTRAN77 program, using double precision arithmetic, which computes the inverse of a symmetric positive definite matrix.
ASA007 is Applied Statistics Algorithm 7. Source code for many Applied Statistics Algorithms is available through STATLIB.
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.
ASA006 is a FORTRAN77 library which computes the Cholesky factorization of a symmetric positive definite matrix. A version of this routine is used by ASA007.
ASA007 is also available in a C++ version and a FORTRAN90 version and a MATLAB version
ASA047 is a FORTRAN77 library which implements the Nelder-Mead minimization algorithm, and uses a version of ASA007 for the computation.
LAPACK is a FORTRAN77 library which includes routines to compute the inverse of symmetric positive matrix.
LINPACK is a FORTRAN77 library which includes routines to compute the inverse of symmetric positive matrix.
You can go up one level to the FORTRAN77 source codes.