LAPACK_EXAMPLES is a FORTRAN77 program which makes example calls to the LAPACK library, which can solve linear systems and compute eigevalues.
Many vendors supply a compiled copy of LAPACK, optimized for their hardware, and easily available as a library.
gfortran myprog.f90 -framework vecLib
LAPACK includes routines to
The source code and documentation for LAPACK is available through the NETLIB web site.
LAPACK_EXAMPLES is available in a FORTRAN77 version and a FORTRAN90 version.
BLAS1, a FORTRAN77 library which carries out vector-vector routines needed by LAPACK.
BLAS2, a FORTRAN77 library which carries out matrix-vector routines needed by LAPACK.
BLAS3, a FORTRAN77 library which carries out matrix-matrix routines needed by LAPACK.
EISPACK, a FORTRAN77 library which is an earlier standard package of eigenvalue routines.
LINPACK, a FORTRAN77 library which is an earlier standard package of linear system solvers.
LINPLUS, a FORTRAN77 library which contains simple linear solvers for a variety of matrix formats.
SVD_DEMO, a FORTRAN77 program which demonstrates the Singular Value Decomposition (SVD) for a simple example.
TEST_EIGEN, a FORTRAN77 library which defines various eigenvalue test cases.
TEST_MAT, a FORTRAN77 library which defines test matrices, some of which have known determinants, eigenvalues and eigenvectors, inverses, and so on.
You can go up one level to the FORTRAN77 source codes.