NAG Library Routine Document
f01blf
(real_gen_pseudinv)
1
Purpose
f01blf calculates the rank and pseudo-inverse of an by real matrix, , using a factorization with column interchanges.
2
Specification
Fortran Interface
Subroutine f01blf ( |
m,
n,
t,
a,
lda,
aijmax,
irank,
inc,
d,
u,
ldu,
du,
ifail) |
Integer, Intent (In) | :: |
m,
n,
lda,
ldu | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
irank,
inc(n) | Real (Kind=nag_wp), Intent (In) | :: |
t | Real (Kind=nag_wp), Intent (Inout) | :: |
a(lda,n),
u(ldu,n) | Real (Kind=nag_wp), Intent (Out) | :: |
aijmax(n),
d(m),
du(n) |
|
C Header Interface
#include nagmk26.h
void |
f01blf_ (
const Integer *m,
const Integer *n,
const double *t,
double a[],
const Integer *lda,
double aijmax[],
Integer *irank,
Integer inc[],
double d[],
double u[],
const Integer *ldu,
double du[],
Integer *ifail) |
|
3
Description
Householder's factorization with column interchanges is used in the decomposition
, where
is
with its columns permuted,
is the first
columns of an
by
orthogonal matrix and
is an
by
upper-trapezoidal matrix of rank
. The pseudo-inverse of
is given by
where
If the matrix is found to be of maximum rank,
,
is a nonsingular
by
upper-triangular matrix and the pseudo-inverse of
simplifies to
. The transpose of the pseudo-inverse of
is overwritten on
.
4
References
Peters G and Wilkinson J H (1970) The least squares problem and pseudo-inverses Comput. J. 13 309–316
Wilkinson J H and Reinsch C (1971) Handbook for Automatic Computation II, Linear Algebra Springer–Verlag
5
Arguments
- 1: – IntegerInput
- 2: – IntegerInput
-
On entry: and , the number of rows and columns in the matrix .
Constraint:
.
- 3: – Real (Kind=nag_wp)Input
-
On entry: the tolerance used to decide when elements can be regarded as zero (see
Section 9).
- 4: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the by rectangular matrix .
On exit: the transpose of the pseudo-inverse of .
- 5: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f01blf is called.
Constraint:
.
- 6: – Real (Kind=nag_wp) arrayOutput
-
On exit:
contains the element of largest modulus in the reduced matrix at the
th stage. If
, then only the first
elements of
aijmax have values assigned to them; the remaining elements are unused. The ratio
usually gives an indication of the condition number of the original matrix (see
Section 9).
- 7: – IntegerOutput
-
On exit:
, the rank of
as determined using the tolerance
t.
- 8: – Integer arrayOutput
-
On exit: the record of the column interchanges in the Householder factorization.
- 9: – Real (Kind=nag_wp) arrayWorkspace
- 10: – Real (Kind=nag_wp) arrayWorkspace
-
- 11: – IntegerInput
-
On entry: the first dimension of the array
u as declared in the (sub)program from which
f01blf is called.
Constraint:
.
- 12: – Real (Kind=nag_wp) arrayWorkspace
-
- 13: – 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:
-
Inverse not found, due to an incorrect determination of
irank (see
Section 9).
-
Invalid tolerance, due to
(i) |
t is negative, ; |
(ii) |
t too large, ; |
(iii) |
t too small, . |
-
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
For most matrices the pseudo-inverse is the best possible having regard to the condition of
and the choice of
t. Note that only the singular value decomposition method can be relied upon to give maximum accuracy for the precision of computation used and correct determination of the condition of a matrix (see
Wilkinson and Reinsch (1971)).
The computed factors
and
satisfy the relation
where
in which
is a modest function of
and
,
is the value of
t, and
is the
machine precision.
8
Parallelism and Performance
f01blf is not threaded in any implementation.
The time taken by f01blf is approximately proportional to .
The most difficult practical problem is the determination of the rank of the matrix (see pages 314–315 of
Peters and Wilkinson (1970)); only the singular value decomposition method gives a reliable indication of rank deficiency (see pages 134–151 of
Wilkinson and Reinsch (1971) and
f08kbf (dgesvd)). In
f01blf a tolerance,
t, is used to recognize ‘zero’ elements in the remaining matrix at each step in the factorization. The value of
t should be set at
times the bound on possible errors in individual elements of the original matrix. If the elements of
vary widely in their orders of magnitude, of course this presents severe difficulties. Sound decisions can only be made by somebody who appreciates the underlying physical problem.
If the condition number of is we expect to get figures wrong in the pseudo-inverse. An estimate of the condition number is usually given by .
10
Example
A complete program follows which outputs the maximum of the moduli of the ‘remaining’ elements at each step in the factorization, the rank, as determined by the given value of
t, and the transposed pseudo-inverse. Data and results are given for an example which is a
by
matrix of deficient rank in which the last column is a linear combination of the other four. Setting
t to
times the norm of the matrix, the rank is correctly determined as
and the pseudo-inverse is computed to full implementation accuracy.
10.1
Program Text
Program Text (f01blfe.f90)
10.2
Program Data
Program Data (f01blfe.d)
10.3
Program Results
Program Results (f01blfe.r)