REGRESSION - Linear Regression

REGRESSION is a collection of software for linear regression. The most common task for such routines is to solve an overdetermined system of linear equations.

In particular, many routines will produce a least-squares solution. That is, given an M by N matrix A, and an M vector B, the routines will seek an N vector X so which minimizes the L2 norm (square root of the sum of the squares of the components) of the residual


        R = A * X - B
      

The code is in a very provisional state. Many routines have not been carefully proofread or debugged or tested yet.

Reference:
Helmuth Spaeth,
Mathematical Algorithms for Linear Regression,
Academic Press, 1991,
ISBN 0-12-656460-4.

A set of 60 data files are also available in the REGRESSION data directory.

Files you may copy include:

The list of routines includes:

Back to the FORTRAN software page.


Last revised on 07 May 2002.