NAG Library Routine Document
f04jgf
(real_gen_solve)
1
Purpose
f04jgf finds the solution of a linear least squares problem, , where is a real by matrix and is an element vector. If the matrix of observations is not of full rank, then the minimal least squares solution is returned.
2
Specification
Fortran Interface
Subroutine f04jgf ( |
m,
n,
a,
lda,
b,
tol,
svd,
sigma,
irank,
work,
lwork,
ifail) |
Integer, Intent (In) | :: |
m,
n,
lda,
lwork | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
irank | Real (Kind=nag_wp), Intent (In) | :: |
tol | Real (Kind=nag_wp), Intent (Inout) | :: |
a(lda,n),
b(m) | Real (Kind=nag_wp), Intent (Out) | :: |
sigma,
work(lwork) | Logical, Intent (Out) | :: |
svd |
|
C Header Interface
#include nagmk26.h
void |
f04jgf_ (
const Integer *m,
const Integer *n,
double a[],
const Integer *lda,
double b[],
const double *tol,
logical *svd,
double *sigma,
Integer *irank,
double work[],
const Integer *lwork,
Integer *ifail) |
|
3
Description
The minimal least squares solution of the problem is the vector of minimum (Euclidean) length which minimizes the length of the residual vector .
The real
by
matrix
is factorized as
where
is an
by
orthogonal matrix and
is an
by
upper triangular matrix. If
is of full rank, then the least squares solution is given by
If
is not of full rank, then the singular value decomposition of
is obtained so that
is factorized as
where
and
are
by
orthogonal matrices and
is the
by
diagonal matrix
with
, these being the singular values of
. If the singular values
are negligible, but
is not negligible, relative to the data errors in
, then the rank of
is taken to be
and the minimal least squares solution is given by
where
.
The routine also returns the value of the standard error
being the residual sum of squares and
the rank of
.
4
References
Lawson C L and Hanson R J (1974) Solving Least Squares Problems Prentice–Hall
5
Arguments
- 1: – IntegerInput
-
On entry:
, the number of rows of
a.
Constraint:
.
- 2: – IntegerInput
-
On entry: , the number of columns of .
Constraint:
.
- 3: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the by matrix .
On exit: if
svd is returned as .FALSE.,
a is overwritten by details of the
factorization of
.
If
svd is returned as .TRUE., the first
rows of
a are overwritten by the right-hand singular vectors, stored by rows; and the remaining rows of the array are used as workspace.
- 4: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f04jgf is called.
Constraint:
.
- 5: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the right-hand side vector .
On exit: the first
elements of
b contain the minimal least squares solution vector
. The remaining
elements are used for workspace.
- 6: – Real (Kind=nag_wp)Input
-
On entry: a relative tolerance to be used to determine the rank of
.
tol should be chosen as approximately the largest relative error in the elements of
. For example, if the elements of
are correct to about
significant figures then
tol should be set to about
. See
Section 9 for a description of how
tol is used to determine rank. If
tol is outside the range
, where
is the
machine precision, the value
is used in place of
tol. For most problems this is unreasonably small.
- 7: – LogicalOutput
-
On exit: is returned as .FALSE. if the least squares solution has been obtained from the
factorization of
. In this case
is of full rank.
svd is returned as .TRUE. if the least squares solution has been obtained from the singular value decomposition of
.
- 8: – Real (Kind=nag_wp)Output
-
On exit: the standard error, i.e., the value when , and the value zero when . Here is the residual vector and is the rank of .
- 9: – IntegerOutput
-
On exit:
, the rank of the matrix
. It should be noted that it is possible for
irank to be returned as
and
svd to be returned as .TRUE.. This means that the matrix
only just failed the test for nonsingularity.
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: if
svd is returned as .FALSE., then the first
elements of
work contain information on the
factorization of
(see argument
a above), and
contains the condition number
of the upper triangular matrix
.
If
svd is returned as .TRUE., then the first
elements of
work contain the singular values of
arranged in descending order and
contains the total number of iterations taken by the
algorithm. The rest of
work is used as workspace.
- 11: – IntegerInput
-
On entry: the dimension of the array
work as declared in the (sub)program from which
f04jgf is called.
Constraint:
.
- 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:
-
On entry, and .
Constraint: .
On entry,
lwork is too small. Minimum size required:
.
On entry, and .
Constraint: .
On entry, .
Constraint: .
-
The algorithm has failed to converge to the singular values in iterations. This failure can only happen when the singular value decomposition is employed, but even then it is not likely to occur.
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
The computed factors
,
,
,
and
satisfy the relations
where
being the
machine precision, and
and
being modest functions of
and
. Note that
.
For a fuller discussion, covering the accuracy of the solution
see
Lawson and Hanson (1974), especially pages 50 and 95.
8
Parallelism and Performance
f04jgf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f04jgf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
If the least squares solution is obtained from the factorization then the time taken by the routine is approximately proportional to . If the least squares solution is obtained from the singular value decomposition then the time taken is approximately proportional to . The approximate proportionality factor is the same in each case.
This routine is column biased and so is suitable for use in paged environments.
Following the
factorization of
the condition number
is determined and if
is such that
then
is regarded as singular and the singular values of
are computed. If this test is not satisfied,
is regarded as nonsingular and the rank of
is set to
. When the singular values are computed the rank of
, say
, is returned as the largest integer such that
unless
in which case
is returned as zero. That is, singular values which satisfy
are regarded as negligible because relative perturbations of order
tol can make such singular values zero.
10
Example
This example obtains a least squares solution for
, where
and the value
tol is to be taken as
.
10.1
Program Text
Program Text (f04jgfe.f90)
10.2
Program Data
Program Data (f04jgfe.d)
10.3
Program Results
Program Results (f04jgfe.r)