F07AVF (ZGERFS) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F07AVF (ZGERFS)

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

F07AVF (ZGERFS) returns error bounds for the solution of a complex system of linear equations with multiple right-hand sides, AX=B, ATX=B or AHX=B. It improves the solution by iterative refinement, in order to reduce the backward error as much as possible.

2  Specification

SUBROUTINE F07AVF ( TRANS, N, NRHS, A, LDA, AF, LDAF, IPIV, B, LDB, X, LDX, FERR, BERR, WORK, RWORK, INFO)
INTEGER  N, NRHS, LDA, LDAF, IPIV(*), LDB, LDX, INFO
REAL (KIND=nag_wp)  FERR(NRHS), BERR(NRHS), RWORK(N)
COMPLEX (KIND=nag_wp)  A(LDA,*), AF(LDAF,*), B(LDB,*), X(LDX,*), WORK(2*N)
CHARACTER(1)  TRANS
The routine may be called by its LAPACK name zgerfs.

3  Description

F07AVF (ZGERFS) returns the backward errors and estimated bounds on the forward errors for the solution of a complex system of linear equations with multiple right-hand sides AX=B, ATX=B or AHX=B. The routine handles each right-hand side vector (stored as a column of the matrix B) independently, so we describe the function of F07AVF (ZGERFS) in terms of a single right-hand side b and solution x.
Given a computed solution x, the routine computes the component-wise backward error β. This is the size of the smallest relative perturbation in each element of A and b such that x is the exact solution of a perturbed system
A+δAx=b+δb δaijβaij   and   δbiβbi .  
Then the routine estimates a bound for the component-wise forward error in the computed solution, defined by:
maxi xi - x^i / maxi xi  
where x^ is the true solution.
For details of the method, see the F07 Chapter Introduction.

4  References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

5  Parameters

1:     TRANS – CHARACTER(1)Input
On entry: indicates the form of the linear equations for which X is the computed solution as follows:
TRANS='N'
The linear equations are of the form AX=B.
TRANS='T'
The linear equations are of the form ATX=B.
TRANS='C'
The linear equations are of the form AHX=B.
Constraint: TRANS='N', 'T' or 'C'.
2:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
3:     NRHS – INTEGERInput
On entry: r, the number of right-hand sides.
Constraint: NRHS0.
4:     ALDA* – COMPLEX (KIND=nag_wp) arrayInput
Note: the second dimension of the array A must be at least max1,N.
On entry: the n by n original matrix A as supplied to F07ARF (ZGETRF).
5:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which F07AVF (ZGERFS) is called.
Constraint: LDAmax1,N.
6:     AFLDAF* – COMPLEX (KIND=nag_wp) arrayInput
Note: the second dimension of the array AF must be at least max1,N.
On entry: the LU factorization of A, as returned by F07ARF (ZGETRF).
7:     LDAF – INTEGERInput
On entry: the first dimension of the array AF as declared in the (sub)program from which F07AVF (ZGERFS) is called.
Constraint: LDAFmax1,N.
8:     IPIV* – INTEGER arrayInput
Note: the dimension of the array IPIV must be at least max1,N.
On entry: the pivot indices, as returned by F07ARF (ZGETRF).
9:     BLDB* – COMPLEX (KIND=nag_wp) arrayInput
Note: the second dimension of the array B must be at least max1,NRHS.
On entry: the n by r right-hand side matrix B.
10:   LDB – INTEGERInput
On entry: the first dimension of the array B as declared in the (sub)program from which F07AVF (ZGERFS) is called.
Constraint: LDBmax1,N.
11:   XLDX* – COMPLEX (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array X must be at least max1,NRHS.
On entry: the n by r solution matrix X, as returned by F07ASF (ZGETRS).
On exit: the improved solution matrix X.
12:   LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which F07AVF (ZGERFS) is called.
Constraint: LDXmax1,N.
13:   FERRNRHS – REAL (KIND=nag_wp) arrayOutput
On exit: FERRj contains an estimated error bound for the jth solution vector, that is, the jth column of X, for j=1,2,,r.
14:   BERRNRHS – REAL (KIND=nag_wp) arrayOutput
On exit: BERRj contains the component-wise backward error bound β for the jth solution vector, that is, the jth column of X, for j=1,2,,r.
15:   WORK2×N – COMPLEX (KIND=nag_wp) arrayWorkspace
16:   RWORKN – REAL (KIND=nag_wp) arrayWorkspace
17:   INFO – INTEGEROutput
On exit: INFO=0 unless the routine detects an error (see Section 6).

6  Error Indicators and Warnings

INFO<0
If INFO=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.

7  Accuracy

The bounds returned in FERR are not rigorous, because they are estimated, not computed exactly; but in practice they almost always overestimate the actual error.

8  Parallelism and Performance

F07AVF (ZGERFS) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
F07AVF (ZGERFS) 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.

9  Further Comments

For each right-hand side, computation of the backward error involves a minimum of 16n2 real floating-point operations. Each step of iterative refinement involves an additional 24n2 real operations. At most five steps of iterative refinement are performed, but usually only one or two steps are required.
Estimating the forward error involves solving a number of systems of linear equations of the form Ax=b or AHx=b; the number is usually 5 and never more than 11. Each solution involves approximately 8n2 real operations.
The real analogue of this routine is F07AHF (DGERFS).

10  Example

This example solves the system of equations AX=B using iterative refinement and to compute the forward and backward error bounds, where
A= -1.34+2.55i 0.28+3.17i -6.39-2.20i 0.72-0.92i -0.17-1.41i 3.31-0.15i -0.15+1.34i 1.29+1.38i -3.29-2.39i -1.91+4.42i -0.14-1.35i 1.72+1.35i 2.41+0.39i -0.56+1.47i -0.83-0.69i -1.96+0.67i  
and
B= 26.26+51.78i 31.32-06.70i 6.43-08.68i 15.86-01.42i -5.75+25.31i -2.15+30.19i 1.16+02.57i -2.56+07.55i .  
Here A is nonsymmetric and must first be factorized by F07ARF (ZGETRF).

10.1  Program Text

Program Text (f07avfe.f90)

10.2  Program Data

Program Data (f07avfe.d)

10.3  Program Results

Program Results (f07avfe.r)


F07AVF (ZGERFS) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015