NAG FL Interface
f07bpf (zgbsvx)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f07bpf uses the LU factorization to compute the solution to a complex system of linear equations
AX=B ,  ATX=B   or   AHX=B ,  
where A is an n×n band matrix with kl subdiagonals and ku superdiagonals, and X and B are n×r matrices. Error bounds on the solution and a condition estimate are also provided.

2 Specification

Fortran Interface
Subroutine f07bpf ( fact, trans, n, kl, ku, nrhs, ab, ldab, afb, ldafb, ipiv, equed, r, c, b, ldb, x, ldx, rcond, ferr, berr, work, rwork, info)
Integer, Intent (In) :: n, kl, ku, nrhs, ldab, ldafb, ldb, ldx
Integer, Intent (Inout) :: ipiv(*)
Integer, Intent (Out) :: info
Real (Kind=nag_wp), Intent (Inout) :: r(*), c(*)
Real (Kind=nag_wp), Intent (Out) :: rcond, ferr(nrhs), berr(nrhs), rwork(max(1,n))
Complex (Kind=nag_wp), Intent (Inout) :: ab(ldab,*), afb(ldafb,*), b(ldb,*), x(ldx,*)
Complex (Kind=nag_wp), Intent (Out) :: work(2*n)
Character (1), Intent (In) :: fact, trans
Character (1), Intent (InOut) :: equed
C Header Interface
#include <nag.h>
void  f07bpf_ (const char *fact, const char *trans, const Integer *n, const Integer *kl, const Integer *ku, const Integer *nrhs, Complex ab[], const Integer *ldab, Complex afb[], const Integer *ldafb, Integer ipiv[], char *equed, double r[], double c[], Complex b[], const Integer *ldb, Complex x[], const Integer *ldx, double *rcond, double ferr[], double berr[], Complex work[], double rwork[], Integer *info, const Charlen length_fact, const Charlen length_trans, const Charlen length_equed)
The routine may be called by the names f07bpf, nagf_lapacklin_zgbsvx or its LAPACK name zgbsvx.

3 Description

f07bpf performs the following steps:
  1. 1.Equilibration
    The linear system to be solved may be badly scaled. However, the system can be equilibrated as a first stage by setting fact='E'. 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 AX=B , ATX=B and AHX=B are
    (DRADC) (DC-1X) = DR B ,  
    (DRADC) T (DR-1X) = DC B ,  
    and
    (DRADC) H (DR-1X) = DC B ,  
    respectively, where DR and DC are diagonal matrices, with positive diagonal elements, formed from the computed scaling factors.
    When equilibration is used, A will be overwritten by DR A DC and B will be overwritten by DR B (or DC B when the solution of ATX=B or AHX=B is sought).
  2. 2.Factorization
    The matrix A, or its scaled form, is copied and factored using the LU decomposition
    A=PLU ,  
    where P is a permutation matrix, L is a unit lower triangular matrix, and U 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 f07bpf with the same matrix A.
  3. 3.Condition Number Estimation
    The LU factorization of A determines whether a solution to the linear system exists. If some diagonal element of U is zero, then U is exactly singular, no solution exists and the routine returns with a failure. Otherwise the factorized form of A is used to estimate the condition number of the matrix A. If the reciprocal of the condition number is less than machine precision then a warning code is returned on final exit.
  4. 4.Solution
    The (equilibrated) system is solved for X ( DC-1X or DR-1X ) using the factored form of A ( DRADC ).
  5. 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. 6.Construct Solution Matrix X
    If equilibration was used, the matrix X is premultiplied by DC (if trans='N') or DR (if trans='T' or 'C') 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 https://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: fact Character(1) Input
On entry: specifies whether or not the factorized form of the matrix A is supplied on entry, and if not, whether the matrix A should be equilibrated before it is factorized.
fact='F'
afb and ipiv contain the factorized form of A. If equed'N', the matrix A has been equilibrated with scaling factors given by r and c. ab, afb and ipiv are not modified.
fact='N'
The matrix A will be copied to afb and factorized.
fact='E'
The matrix A will be equilibrated if necessary, then copied to afb and factorized.
Constraint: fact='F', 'N' or 'E'.
2: trans Character(1) Input
On entry: specifies the form of the system of equations.
trans='N'
AX=B (No transpose).
trans='T'
ATX=B (Transpose).
trans='C'
AHX=B (Conjugate transpose).
Constraint: trans='N', 'T' or 'C'.
3: n Integer Input
On entry: n, the number of linear equations, i.e., the order of the matrix A.
Constraint: n0.
4: kl Integer Input
On entry: kl, the number of subdiagonals within the band of the matrix A.
Constraint: kl0.
5: ku Integer Input
On entry: ku, the number of superdiagonals within the band of the matrix A.
Constraint: ku0.
6: nrhs Integer Input
On entry: r, the number of right-hand sides, i.e., the number of columns of the matrix B.
Constraint: nrhs0.
7: ab(ldab,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array ab must be at least max(1,n).
On entry: the n×n coefficient matrix A.
The matrix is stored in rows 1 to kl+ku+1, more precisely, the element Aij must be stored in
ab(ku+1+i-j,j)  for ​max(1,j-ku)imin(n,j+kl).  
See Section 9 for further details.
If fact='F' and equed'N', A must have been equilibrated by the scaling factors in r and/or c.
On exit: if fact='F' or 'N', or if fact='E' and equed='N', ab is not modified.
If equed'N' then, if no constraints are violated, A is scaled as follows:
  • if equed='R', A=DrA;
  • if equed='C', A=ADc;
  • if equed='B', A=DrADc.
8: ldab Integer Input
On entry: the first dimension of the array ab as declared in the (sub)program from which f07bpf is called.
Constraint: ldabkl+ku+1.
9: afb(ldafb,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array afb must be at least max(1,n).
On entry: if fact='N' or 'E', afb need not be set.
If fact='F', details of the LU factorization of the n×n band matrix A, as computed by f07brf.
The upper triangular band matrix U, with kl+ku superdiagonals, is stored in rows 1 to kl+ku+1 of the array, and the multipliers used to form the matrix L are stored in rows kl+ku+2 to 2kl+ku+1.
If equed'N', afb is the factorized form of the equilibrated matrix A.
On exit: if fact='F', afb is unchanged from entry.
Otherwise, if no constraints are violated, then if fact='N', afb returns details of the LU factorization of the band matrix A, and if fact='E', afb returns details of the LU factorization of the equilibrated band matrix A (see the description of ab for the form of the equilibrated matrix).
10: ldafb Integer Input
On entry: the first dimension of the array afb as declared in the (sub)program from which f07bpf is called.
Constraint: ldafb2×kl+ku+1.
11: ipiv(*) Integer array Input/Output
Note: the dimension of the array ipiv must be at least max(1,n).
On entry: if fact='N' or 'E', ipiv need not be set.
If fact='F', ipiv contains the pivot indices from the factorization A=LU, as computed by f07bdf; row i of the matrix was interchanged with row ipiv(i).
On exit: if fact='F', ipiv is unchanged from entry.
Otherwise, if no constraints are violated, ipiv contains the pivot indices that define the permutation matrix P; at the ith step row i of the matrix was interchanged with row ipiv(i). ipiv(i)=i indicates a row interchange was not required.
If fact='N', the pivot indices are those corresponding to the factorization A=LU of the original matrix A.
If fact='E', the pivot indices are those corresponding to the factorization of A=LU of the equilibrated matrix A.
12: equed Character(1) Input/Output
On entry: if fact='N' or 'E', equed need not be set.
If fact='F', equed must specify the form of the equilibration that was performed as follows:
  • if equed='N', no equilibration;
  • if equed='R', row equilibration, i.e., A has been premultiplied by DR;
  • if equed='C', column equilibration, i.e., A has been postmultiplied by DC;
  • if equed='B', both row and column equilibration, i.e., A has been replaced by DRADC.
On exit: if fact='F', 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 fact='F', equed='N', 'R', 'C' or 'B'.
13: r(*) Real (Kind=nag_wp) array Input/Output
Note: the dimension of the array r must be at least max(1,n).
On entry: if fact='N' or 'E', r need not be set.
If fact='F' and equed='R' or 'B', r must contain the row scale factors for A, DR; each element of r must be positive.
On exit: if fact='F', r is unchanged from entry.
Otherwise, if no constraints are violated and equed='R' or 'B', r contains the row scale factors for A, DR, such that A is multiplied on the left by DR; each element of r is positive.
14: c(*) Real (Kind=nag_wp) array Input/Output
Note: the dimension of the array c must be at least max(1,n).
On entry: if fact='N' or 'E', c need not be set.
If fact='F' and equed='C' or 'B', c must contain the column scale factors for A, DC; each element of c must be positive.
On exit: if fact='F', c is unchanged from entry.
Otherwise, if no constraints are violated and equed='C' or 'B', c contains the row scale factors for A, DC; each element of c is positive.
15: b(ldb,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array b must be at least max(1,nrhs).
On entry: the n×r right-hand side matrix B.
On exit: if equed='N', b is not modified.
If trans='N' and equed='R' or 'B', b is overwritten by DRB.
If trans='T' or 'C' and equed='C' or 'B', b is overwritten by DCB.
16: ldb Integer Input
On entry: the first dimension of the array b as declared in the (sub)program from which f07bpf is called.
Constraint: ldbmax(1,n).
17: x(ldx,*) Complex (Kind=nag_wp) array Output
Note: the second dimension of the array x must be at least max(1,nrhs).
On exit: if info=0 or n+1, the n×r solution matrix X to the original system of equations. Note that the arrays A and B are modified on exit if equed'N', and the solution to the equilibrated system is DC-1X if trans='N' and equed='C' or 'B', or DR-1X if trans='T' or 'C' and equed='R' or 'B'.
18: ldx Integer Input
On entry: the first dimension of the array x as declared in the (sub)program from which f07bpf is called.
Constraint: ldxmax(1,n).
19: rcond Real (Kind=nag_wp) Output
On exit: if no constraints are violated, an estimate of the reciprocal condition number of the matrix A (after equilibration if that is performed), computed as rcond=1.0/(A1A-11).
20: ferr(nrhs) Real (Kind=nag_wp) array Output
On exit: if info=0 or n+1, an estimate of the forward error bound for each computed solution vector, such that x^j-xj/xjferr(j) where x^j is the jth column of the computed solution returned in the array x and xj is the corresponding column of the exact solution X. The estimate is as reliable as the estimate for rcond, and is almost always a slight overestimate of the true error.
21: berr(nrhs) Real (Kind=nag_wp) array Output
On exit: if info=0 or n+1, an estimate of the component-wise relative backward error of each computed solution vector x^j (i.e., the smallest relative change in any element of A or B that makes x^j an exact solution).
22: work(2×n) Complex (Kind=nag_wp) array Workspace
23: rwork(max(1,n)) Real (Kind=nag_wp) array Output
On exit: if info=0, rwork(1) contains the reciprocal pivot growth factor max|aij|/max|uij|. If rwork(1) is much less than 1, then the stability of the LU factorization of the (equilibrated) matrix A could be poor. This also means that the solution X, condition estimator rcond, and forward error bound ferr could be unreliable. If the factorization fails with info>0andinfon, rwork(1) contains the reciprocal pivot growth factor for the leading info columns of A.
24: info Integer Output
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.
info>0andinfon
Element value of the diagonal is exactly zero. The factorization has been completed, but the factor U is exactly singular, so the solution and error bounds could not be computed. rcond=0.0 is returned.
info=n+1
U 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 b, the computed solution x^ is the exact solution of a perturbed system of equations (A+E)x^=b, where
|E|c(n)εP|L||U| ,  
c(n) is a modest linear function of n, and ε is the machine precision. See Section 9.3 of Higham (2002) for further details.
If x is the true solution, then the computed solution x^ satisfies a forward error bound of the form
x-x^ x^ wc cond(A,x^,b)  
where cond(A,x^,b) = |A-1|(|A||x^|+|b|)/ x^ cond(A) = |A-1||A|κ (A). If x^ is the j th column of X , then wc is returned in berr(j) and a bound on x-x^ / x^ is returned in ferr(j) . See Section 4.4 of Anderson et al. (1999) for further details.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f07bpf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f07bpf 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

The band storage scheme for the array ab is illustrated by the following example, when n=6 , kl=1 , and ku=2 . Storage of the band matrix A in the array ab:
* * a13 a24 a35 a46 * a12 a23 a34 a45 a56 a11 a22 a33 a44 a55 a66 a21 a32 a43 a54 a65 *  
The total number of floating-point operations required to solve the equations AX=B depends upon the pivoting required, but if nkl + ku then it is approximately bounded by O( n kl ( kl + ku ) ) for the factorization and O( n (2kl+ku) r ) for the solution following the factorization. The condition number estimation typically requires between four and five solves and never more than eleven solves, following the factorization. The solution is then refined, and the errors estimated, using iterative refinement; see f07bvf for information on the floating-point operations required.
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 real analogue of this routine is f07bbf.

10 Example

This example solves the equations
AX=B ,  
where A is the band matrix
A = ( -1.65+2.26i -2.05-0.85i 0.97-2.84i 0.00i+0.00 6.30i -1.48-1.75i -3.99+4.01i 0.59-0.48i 0.00i+0.00 -0.77+2.83i -1.06+1.94i 3.33-1.04i 0.00i+0.00 0.00i+0.00 4.48-1.09i -0.46-1.72i )  
and
B = ( -1.06+21.50i 12.85+02.84i -22.72-53.90i -70.22+21.57i 28.24-38.60i -20.73-01.23i -34.56+16.73i 26.01+31.97i ) .  
Estimates for the backward errors, forward errors, condition number and pivot growth are also output, together with information on the equilibration of A .

10.1 Program Text

Program Text (f07bpfe.f90)

10.2 Program Data

Program Data (f07bpfe.d)

10.3 Program Results

Program Results (f07bpfe.r)