F07BHF (DGBRFS) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F07BHF (DGBRFS)

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

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

2  Specification

SUBROUTINE F07BHF ( TRANS, N, KL, KU, NRHS, AB, LDAB, AFB, LDAFB, IPIV, B, LDB, X, LDX, FERR, BERR, WORK, IWORK, INFO)
INTEGER  N, KL, KU, NRHS, LDAB, LDAFB, IPIV(*), LDB, LDX, IWORK(N), INFO
REAL (KIND=nag_wp)  AB(LDAB,*), AFB(LDAFB,*), B(LDB,*), X(LDX,*), FERR(NRHS), BERR(NRHS), WORK(3*N)
CHARACTER(1)  TRANS
The routine may be called by its LAPACK name dgbrfs.

3  Description

F07BHF (DGBRFS) returns the backward errors and estimated bounds on the forward errors for the solution of a real band system of linear equations with multiple right-hand sides AX=B or ATX=B. The routine handles each right-hand side vector (stored as a column of the matrix B) independently, so we describe the function of F07BHF (DGBRFS) 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.
TRANS='N'
The linear equations are of the form AX=B.
TRANS='T' or 'C'
The linear equations are of the form ATX=B.
Constraint: TRANS='N', 'T' or 'C'.
2:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
3:     KL – INTEGERInput
On entry: kl, the number of subdiagonals within the band of the matrix A.
Constraint: KL0.
4:     KU – INTEGERInput
On entry: ku, the number of superdiagonals within the band of the matrix A.
Constraint: KU0.
5:     NRHS – INTEGERInput
On entry: r, the number of right-hand sides.
Constraint: NRHS0.
6:     ABLDAB* – REAL (KIND=nag_wp) arrayInput
Note: the second dimension of the array AB must be at least max1,N.
On entry: the original n by n band matrix A as supplied to F07BDF (DGBTRF).
The matrix is stored in rows 1 to kl+ku+1, more precisely, the element Aij must be stored in
ABku+1+i-jj  for ​max1,j-kuiminn,j+kl. 
See Section 9 in F07BAF (DGBSV) for further details.
7:     LDAB – INTEGERInput
On entry: the first dimension of the array AB as declared in the (sub)program from which F07BHF (DGBRFS) is called.
Constraint: LDABKL+KU+1.
8:     AFBLDAFB* – REAL (KIND=nag_wp) arrayInput
Note: the second dimension of the array AFB must be at least max1,N.
On entry: the LU factorization of A, as returned by F07BDF (DGBTRF).
9:     LDAFB – INTEGERInput
On entry: the first dimension of the array AFB as declared in the (sub)program from which F07BHF (DGBRFS) is called.
Constraint: LDAFB2×KL+KU+1.
10:   IPIV* – INTEGER arrayInput
Note: the dimension of the array IPIV must be at least max1,N.
On entry: the pivot indices, as returned by F07BDF (DGBTRF).
11:   BLDB* – REAL (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.
12:   LDB – INTEGERInput
On entry: the first dimension of the array B as declared in the (sub)program from which F07BHF (DGBRFS) is called.
Constraint: LDBmax1,N.
13:   XLDX* – REAL (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 F07BEF (DGBTRS).
On exit: the improved solution matrix X.
14:   LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which F07BHF (DGBRFS) is called.
Constraint: LDXmax1,N.
15:   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.
16:   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.
17:   WORK3×N – REAL (KIND=nag_wp) arrayWorkspace
18:   IWORKN – INTEGER arrayWorkspace
19:   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

F07BHF (DGBRFS) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
F07BHF (DGBRFS) 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 4nkl+ku floating-point operations. Each step of iterative refinement involves an additional 2n4kl+3ku operations. This assumes nkl and nku. 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 ATx=b; the number is usually 4 or 5 and never more than 11. Each solution involves approximately 2n2kl+ku operations.
The complex analogue of this routine is F07BVF (ZGBRFS).

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= -0.23 2.54 -3.66 0.00 -6.98 2.46 -2.73 -2.13 0.00 2.56 2.46 4.07 0.00 0.00 -4.78 -3.82   and   B= 4.42 -36.01 27.13 -31.67 -6.14 -1.16 10.50 -25.82 .  
Here A is nonsymmetric and is treated as a band matrix, which must first be factorized by F07BDF (DGBTRF).

10.1  Program Text

Program Text (f07bhfe.f90)

10.2  Program Data

Program Data (f07bhfe.d)

10.3  Program Results

Program Results (f07bhfe.r)


F07BHF (DGBRFS) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

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