linpack_z


linpack_z, a FORTRAN90 code which solves systems of linear equations for a variety of matrix types and storage modes, 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.

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

Licensing:

The information on this web page is distributed under the MIT license.

Languages:

linpack_z is available in a C++ version and a Fortran77 version and a Fortran90 version and a MATLAB version and an Octave version.

Related Data and Programs:

linpack_z_test

blas1_z, a FORTRAN90 code which contains basic linear algebra routines for vector-vector operations, using double precision complex arithmetic.

c8lib, a FORTRAN90 code which implements certain elementary functions for double precision complex variables;

complex_numbers_test, a FORTRAN90 code which demonstrates some simple features involved in the use of complex numbers in FORTRAN90 codeming.

linpack_bench, a FORTRAN90 code which is a benchmark which measures the time taken by LINPACK to solve a particular linear system.

linpack_d, a FORTRAN90 code which solves linear systems using double precision real arithmetic;

nms, a FORTRAN90 code which includes a wide variety of numerical software.

test_matrix, a FORTRAN90 code which defines test matrices, some of which have known determinants, eigenvalues and eigenvectors, inverses and so on.

Author:

Original FORTRAN77 version by Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart. This version by John Burkardt.

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.
  2. Charles Lawson, Richard Hanson, David Kincaid and Fred Krogh,
    Algorithm 539, Basic Linear Algebra Subprograms for Fortran Usage,
    ACM Transactions on Mathematical Software,
    Volume 5, Number 3, September 1979, pages 308-323.

Source Code:


Last revised on 28 July 2020.