NAG Library Routine Document
e02gaf
(glin_l1sol)
1
Purpose
e02gaf calculates an solution to an over-determined system of linear equations.
2
Specification
Fortran Interface
Subroutine e02gaf ( |
m,
a,
lda,
b,
nplus2,
toler,
x,
resid,
irank,
iter,
iwork,
ifail) |
Integer, Intent (In) | :: |
m,
lda,
nplus2 | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
irank,
iter,
iwork(m) | Real (Kind=nag_wp), Intent (In) | :: |
toler | Real (Kind=nag_wp), Intent (Inout) | :: |
a(lda,nplus2),
b(m) | Real (Kind=nag_wp), Intent (Out) | :: |
x(nplus2),
resid |
|
C Header Interface
#include nagmk26.h
void |
e02gaf_ (
const Integer *m,
double a[],
const Integer *lda,
double b[],
const Integer *nplus2,
const double *toler,
double x[],
double *resid,
Integer *irank,
Integer *iter,
Integer iwork[],
Integer *ifail) |
|
3
Description
Given a matrix
with
rows and
columns
and a vector
with
elements, the routine calculates an
solution to the over-determined system of equations
That is to say, it calculates a vector
, with
elements, which minimizes the
norm (the sum of the absolute values) of the residuals
where the residuals
are given by
Here
is the element in row
and column
of
,
is the
th element of
and
the
th element of
. The matrix
need not be of full rank.
Typically in applications to data fitting, data consisting of
points with coordinates
are to be approximated in the
norm by a linear combination of known functions
,
This is equivalent to fitting an
solution to the over-determined system of equations
Thus if, for each value of
and
, the element
of the matrix
in the previous paragraph is set equal to the value of
and
is set equal to
, the solution vector
will contain the required values of the
. Note that the independent variable
above can, instead, be a vector of several independent variables (this includes the case where each
is a function of a different variable, or set of variables).
The algorithm is a modification of the simplex method of linear programming applied to the primal formulation of the
problem (see
Barrodale and Roberts (1973) and
Barrodale and Roberts (1974)). The modification allows several neighbouring simplex vertices to be passed through in a single iteration, providing a substantial improvement in efficiency.
4
References
Barrodale I and Roberts F D K (1973) An improved algorithm for discrete linear approximation SIAM J. Numer. Anal. 10 839–848
Barrodale I and Roberts F D K (1974) Solution of an overdetermined system of equations in the -norm Comm. ACM 17(6) 319–320
5
Arguments
- 1: – IntegerInput
-
On entry: the number of equations, (the number of rows of the matrix ).
Constraint:
.
- 2: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: must contain , the element in the th row and th column of the matrix , for and . The remaining elements need not be set.
On exit: contains the last simplex tableau generated by the simplex method.
- 3: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
e02gaf is called.
Constraint:
.
- 4: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: must contain , the th element of the vector , for .
On exit: the
th residual corresponding to the solution vector , for .
- 5: – IntegerInput
-
On entry: , where is the number of unknowns (the number of columns of the matrix ).
Constraint:
.
- 6: – Real (Kind=nag_wp)Input
-
On entry: a non-negative value. In general
toler specifies a threshold below which numbers are regarded as zero. The recommended threshold value is
where
is the
machine precision. The recommended value can be computed within the routine by setting
toler to zero. If premature termination occurs a larger value for
toler may result in a valid solution.
Suggested value:
.
- 7: – Real (Kind=nag_wp) arrayOutput
-
On exit: contains the th element of the solution vector , for . The elements and are unused.
- 8: – Real (Kind=nag_wp)Output
-
On exit: the sum of the absolute values of the residuals for the solution vector .
- 9: – IntegerOutput
-
On exit: the computed rank of the matrix .
- 10: – IntegerOutput
-
On exit: the number of iterations taken by the simplex method.
- 11: – Integer arrayWorkspace
-
- 12: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
An optimal solution has been obtained but this may not be unique.
-
The calculations have terminated prematurely due to rounding errors. Experiment with larger values of
toler or try scaling the columns of the matrix (see
Section 9).
-
On entry, | , |
or | , |
or | . |
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
Experience suggests that the computational accuracy of the solution is comparable with the accuracy that could be obtained by applying Gaussian elimination with partial pivoting to the equations satisfied by this algorithm (i.e., those equations with zero residuals). The accuracy therefore varies with the conditioning of the problem, but has been found generally very satisfactory in practice.
8
Parallelism and Performance
e02gaf is not threaded in any implementation.
The effects of and on the time and on the number of iterations in the Simplex Method vary from problem to problem, but typically the number of iterations is a small multiple of and the total time taken is approximately proportional to .
It is recommended that, before the routine is entered, the columns of the matrix
are scaled so that the largest element in each column is of the order of unity. This should improve the conditioning of the matrix, and also enable the argument
toler to perform its correct function. The solution
obtained will then, of course, relate to the scaled form of the matrix. Thus if the scaling is such that, for each
, the elements of the
th column are multiplied by the constant
, the element
of the solution vector
must be multiplied by
if it is desired to recover the solution corresponding to the original matrix
.
10
Example
Suppose we wish to approximate a set of data by a curve of the form
where
,
and
are unknown. Given values
at
points
we may form the over-determined set of equations for
,
and
e02gaf is used to solve these in the
sense.
10.1
Program Text
Program Text (e02gafe.f90)
10.2
Program Data
Program Data (e02gafe.d)
10.3
Program Results
Program Results (e02gafe.r)