NAG Library Routine Document
f07abf
(dgesvx)
1
Purpose
f07abf (dgesvx) uses the
factorization to compute the solution to a real system of linear equations
where
is an
by
matrix and
and
are
by
matrices. Error bounds on the solution and a condition estimate are also provided.
2
Specification
Fortran Interface
Subroutine f07abf ( |
fact,
trans,
n,
nrhs,
a,
lda,
af,
ldaf,
ipiv,
equed,
r,
c,
b,
ldb,
x,
ldx,
rcond,
ferr,
berr,
work,
iwork,
info) |
Integer, Intent (In) | :: |
n,
nrhs,
lda,
ldaf,
ldb,
ldx | Integer, Intent (Inout) | :: |
ipiv(*) | Integer, Intent (Out) | :: |
iwork(n),
info | Real (Kind=nag_wp), Intent (Inout) | :: |
a(lda,*),
af(ldaf,*),
r(*),
c(*),
b(ldb,*),
x(ldx,*) | Real (Kind=nag_wp), Intent (Out) | :: |
rcond,
ferr(nrhs),
berr(nrhs),
work(max(1,4*n)) | Character (1), Intent (In) | :: |
fact,
trans | Character (1), Intent (Inout) | :: |
equed |
|
C Header Interface
#include nagmk26.h
void |
f07abf_ (
const char *fact,
const char *trans,
const Integer *n,
const Integer *nrhs,
double a[],
const Integer *lda,
double af[],
const Integer *ldaf,
Integer ipiv[],
char *equed,
double r[],
double c[],
double b[],
const Integer *ldb,
double x[],
const Integer *ldx,
double *rcond,
double ferr[],
double berr[],
double work[],
Integer iwork[],
Integer *info,
const Charlen length_fact,
const Charlen length_trans,
const Charlen length_equed) |
|
The routine may be called by its
LAPACK
name dgesvx.
3
Description
f07abf (dgesvx) performs the following steps:
1. |
Equilibration
The linear system to be solved may be badly scaled. However, the system can be equilibrated as a first stage by setting . In this case, real scaling factors are computed and these factors then determine whether the system is to be equilibrated. Equilibrated forms of the systems and are
and
respectively, where and are diagonal matrices, with positive diagonal elements, formed from the computed scaling factors.
When equilibration is used, will be overwritten by and will be overwritten by (or when the solution of is sought). |
2. |
Factorization
The matrix , or its scaled form, is copied and factored using the decomposition
where is a permutation matrix, is a unit lower triangular matrix, and is upper triangular.
This stage can be by-passed when a factored matrix (with scaled matrices and scaling factors) are supplied; for example, as provided by a previous call to f07abf (dgesvx) with the same matrix . |
3. |
Condition Number Estimation
The factorization of determines whether a solution to the linear system exists. If some diagonal element of is zero, then is exactly singular, no solution exists and the routine returns with a failure. Otherwise the factorized form of is used to estimate the condition number of the matrix . If the reciprocal of the condition number is less than machine precision then a warning code is returned on final exit. |
4. |
Solution
The (equilibrated) system is solved for ( or ) using the factored form of (). |
5. |
Iterative Refinement
Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for the computed solution. |
6. |
Construct Solution Matrix
If equilibration was used, the matrix is premultiplied by (if ) or (if or ) so that it solves the original system before equilibration. |
4
References
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999)
LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
http://www.netlib.org/lapack/lug
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia
5
Arguments
- 1: – Character(1)Input
-
On entry: specifies whether or not the factorized form of the matrix
is supplied on entry, and if not, whether the matrix
should be equilibrated before it is factorized.
- af and ipiv contain the factorized form of . If , the matrix has been equilibrated with scaling factors given by r and c. a, af and ipiv are not modified.
- The matrix will be copied to af and factorized.
- The matrix will be equilibrated if necessary, then copied to af and factorized.
Constraint:
, or .
- 2: – Character(1)Input
-
On entry: specifies the form of the system of equations.
- (No transpose).
- or
- (Transpose).
Constraint:
, or .
- 3: – IntegerInput
-
On entry: , the number of linear equations, i.e., the order of the matrix .
Constraint:
.
- 4: – IntegerInput
-
On entry: , the number of right-hand sides, i.e., the number of columns of the matrix .
Constraint:
.
- 5: – Real (Kind=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
a
must be at least
.
On entry: the
by
matrix
.
If
and
,
a must have been equilibrated by the scaling factors in
r and/or
c.
On exit: if
or
, or if
and
,
a is not modified.
If
or
,
is scaled as follows:
- if , ;
- if , ;
- if , .
- 6: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f07abf (dgesvx) is called.
Constraint:
.
- 7: – Real (Kind=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
af
must be at least
.
On entry: if
,
af contains the factors
and
from the factorization
as computed by
f07adf (dgetrf). If
,
af is the factorized form of the equilibrated matrix
.
If
or
,
af need not be set.
On exit: if
,
af returns the factors
and
from the factorization
of the original matrix
.
If
,
af returns the factors
and
from the factorization
of the equilibrated matrix
(see the description of
a for the form of the equilibrated matrix).
If
,
af is unchanged from entry.
- 8: – IntegerInput
-
On entry: the first dimension of the array
af as declared in the (sub)program from which
f07abf (dgesvx) is called.
Constraint:
.
- 9: – Integer arrayInput/Output
-
Note: the dimension of the array
ipiv
must be at least
.
On entry: if
,
ipiv contains the pivot indices from the factorization
as computed by
f07adf (dgetrf); at the
th step row
of the matrix was interchanged with row
.
indicates a row interchange was not required.
If
or
,
ipiv need not be set.
On exit: if
,
ipiv contains the pivot indices from the factorization
of the original matrix
.
If
,
ipiv contains the pivot indices from the factorization
of the equilibrated matrix
.
If
,
ipiv is unchanged from entry.
- 10: – Character(1)Input/Output
-
On entry: if
or
,
equed need not be set.
If
,
equed must specify the form of the equilibration that was performed as follows:
- if , no equilibration;
- if , row equilibration, i.e., has been premultiplied by ;
- if , column equilibration, i.e., has been postmultiplied by ;
- if , both row and column equilibration, i.e., has been replaced by .
On exit: if
,
equed is unchanged from entry.
Otherwise, if no constraints are violated,
equed specifies the form of equilibration that was performed as specified above.
Constraint:
if , , , or .
- 11: – Real (Kind=nag_wp) arrayInput/Output
-
Note: the dimension of the array
r
must be at least
.
On entry: if
or
,
r need not be set.
If
and
or
,
r must contain the row scale factors for
,
; each element of
r must be positive.
On exit: if
,
r is unchanged from entry.
Otherwise, if no constraints are violated and
or
,
r contains the row scale factors for
,
, such that
is multiplied on the left by
; each element of
r is positive.
- 12: – Real (Kind=nag_wp) arrayInput/Output
-
Note: the dimension of the array
c
must be at least
.
On entry: if
or
,
c need not be set.
If
and
or
,
c must contain the column scale factors for
,
; each element of
c must be positive.
On exit: if
,
c is unchanged from entry.
Otherwise, if no constraints are violated and
or
,
c contains the row scale factors for
,
; each element of
c is positive.
- 13: – Real (Kind=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
b
must be at least
.
On entry: the by right-hand side matrix .
On exit: if
,
b is not modified.
If
and
or
,
b is overwritten by
.
If
or
and
or
,
b is overwritten by
.
- 14: – IntegerInput
-
On entry: the first dimension of the array
b as declared in the (sub)program from which
f07abf (dgesvx) is called.
Constraint:
.
- 15: – Real (Kind=nag_wp) arrayOutput
-
Note: the second dimension of the array
x
must be at least
.
On exit: if or , the by solution matrix to the original system of equations. Note that the arrays and are modified on exit if , and the solution to the equilibrated system is if and or , or if or and or .
- 16: – IntegerInput
-
On entry: the first dimension of the array
x as declared in the (sub)program from which
f07abf (dgesvx) is called.
Constraint:
.
- 17: – Real (Kind=nag_wp)Output
-
On exit: if no constraints are violated, an estimate of the reciprocal condition number of the matrix (after equilibration if that is performed), computed as .
- 18: – Real (Kind=nag_wp) arrayOutput
-
On exit: if
or
, an estimate of the forward error bound for each computed solution vector, such that
where
is the
th column of the computed solution returned in the array
x and
is the corresponding column of the exact solution
. The estimate is as reliable as the estimate for
rcond, and is almost always a slight overestimate of the true error.
- 19: – Real (Kind=nag_wp) arrayOutput
-
On exit: if or , an estimate of the component-wise relative backward error of each computed solution vector (i.e., the smallest relative change in any element of or that makes an exact solution).
- 20: – Real (Kind=nag_wp) arrayOutput
-
On exit:
contains the reciprocal pivot growth factor
. The ‘max absolute element’ norm is used. If
is much less than
, then the stability of the
factorization of the (equilibrated) matrix
could be poor. This also means that the solution
x, condition estimate
rcond, and forward error bound
ferr could be unreliable. If the factorization fails with
, then
contains the reciprocal pivot growth factor for the leading
info columns of
.
- 21: – Integer arrayWorkspace
-
- 22: – IntegerOutput
On exit:
unless the routine detects an error (see
Section 6).
6
Error Indicators and Warnings
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
-
Element of the diagonal is exactly zero.
The factorization has been completed, but the factor is exactly singular, so the solution and error bounds could not be computed.
is returned.
-
is nonsingular, but
rcond is less than
machine precision, meaning that the matrix is singular to working precision.
Nevertheless, the solution and error bounds are computed because there
are a number of situations where the computed solution can be more accurate
than the value of
rcond would suggest.
7
Accuracy
For each right-hand side vector
, the computed solution
is the exact solution of a perturbed system of equations
, where
is a modest linear function of
, and
is the
machine precision. See Section 9.3 of
Higham (2002) for further details.
If
is the true solution, then the computed solution
satisfies a forward error bound of the form
where
.
If
is the
th column of
, then
is returned in
and a bound on
is returned in
. See Section 4.4 of
Anderson et al. (1999) for further details.
8
Parallelism and Performance
f07abf (dgesvx) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f07abf (dgesvx) 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.
The factorization of requires approximately floating-point operations.
Estimating the forward error involves solving a number of systems of linear equations of the form or ; the number is usually or and never more than . Each solution involves approximately operations.
In practice the condition number estimator is very reliable, but it can underestimate the true condition number; see Section 15.3 of
Higham (2002) for further details.
The complex analogue of this routine is
f07apf (zgesvx).
10
Example
This example solves the equations
where
is the general matrix
and
Error estimates for the solutions, information on scaling, an estimate of the reciprocal of the condition number of the scaled matrix and an estimate of the reciprocal of the pivot growth factor for the factorization of are also output.
10.1
Program Text
Program Text (f07abfe.f90)
10.2
Program Data
Program Data (f07abfe.d)
10.3
Program Results
Program Results (f07abfe.r)