LINPACK
Linear Algebra Library


LINPACK is a FORTRAN77 library which solves systems of linear equations for a variety of matrix types and storage modes, for real or complex arithmetic, and for single or double precision, by Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart.

LINPACK has officially been superseded by the LAPACK library. The LAPACK library uses more modern algorithms and code structure. However, the LAPACK library can be extraordinarily complex; what is done in a single LINPACK routine may correspond to 10 or 20 utility routines in LAPACK. This is fine if you treat LAPACK as a black box. But if you wish to learn how the algorithm works, or to adapt it, or to convert the code to another language, this is a real drawback. This is one reason I still keep a copy of LINPACK around.

The LINPACK routines are available in both real and complex arithmetic versions, and using single precision or double precision. In most cases, a given routine has a root name, such as GEFA, and a prefix is used to identify the arithmetic and precision. Thus,

Versions of LINPACK in various arithmetic precisions are available through the NETLIB web site.

Licensing:

The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.

Languages:

LINPACK is available in a C version and a C++ version and a FORTRAN77 version and a FORTRAN90 version and a MATLAB version.

Related Data and Programs:

LINPACK_C, a FORTRAN77 library which solves linear systems using single precision complex arithmetic;

LINPACK_D, a FORTRAN77 library which solves linear systems using double precision real arithmetic;

LINPACK_S, a FORTRAN77 library which solves linear systems using single precision real arithmetic;

LINPACK_Z, a FORTRAN77 library which solves linear systems using double precision complex arithmetic;

SVD_DEMO, a FORTRAN77 program which demonstrates the Singular Value Decomposition (SVD) for a simple example.

TOMS581, a FORTRAN77 library which implements an improved algorithm for computing the singular value decomposition (SVD) of a rectangular matrix; this is ACM TOMS algorithm 571, by Tony Chan.

Author:

Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart.

Reference:

  1. Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart,
    LINPACK User's Guide,
    SIAM, 1979,
    ISBN13: 978-0-898711-72-1,
    LC: QA214.L56.

You can go up one level to the FORTRAN77 source codes.


Last revised on 29 April 2012.