NAG FL Interface
f07hpf (zpbsvx)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f07hpf uses the Cholesky factorization
A=UHU   or   A=LLH  
to compute the solution to a complex system of linear equations
AX=B ,  
where A is an n×n Hermitian positive definite band matrix of bandwidth (2kd+1) 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 f07hpf ( fact, uplo, n, kd, nrhs, ab, ldab, afb, ldafb, equed, s, b, ldb, x, ldx, rcond, ferr, berr, work, rwork, info)
Integer, Intent (In) :: n, kd, nrhs, ldab, ldafb, ldb, ldx
Integer, Intent (Out) :: info
Real (Kind=nag_wp), Intent (Inout) :: s(*)
Real (Kind=nag_wp), Intent (Out) :: rcond, ferr(nrhs), berr(nrhs), rwork(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, uplo
Character (1), Intent (InOut) :: equed
C Header Interface
#include <nag.h>
void  f07hpf_ (const char *fact, const char *uplo, const Integer *n, const Integer *kd, const Integer *nrhs, Complex ab[], const Integer *ldab, Complex afb[], const Integer *ldafb, char *equed, double s[], 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_uplo, const Charlen length_equed)
The routine may be called by the names f07hpf, nagf_lapacklin_zpbsvx or its LAPACK name zpbsvx.

3 Description

f07hpf performs the following steps:
  1. 1.If fact='E', real diagonal scaling factors, DS , are computed to equilibrate the system:
    (DSADS) (DS-1X) = DS B .  
    Whether or not the system will be equilibrated depends on the scaling of the matrix A, but if equilibration is used, A is overwritten by DS A DS and B× DS B.
  2. 2.If fact='N' or 'E', the Cholesky decomposition is used to factor the matrix A (after equilibration if fact='E') as A=UHU if uplo='U' or A=LLH if uplo='L', where U is an upper triangular matrix and L is a lower triangular matrix.
  3. 3.If the leading i×i principal minor of A is not positive definite, then the routine returns with info=i. Otherwise, the factored 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, info=n+1 is returned as a warning, but the routine still goes on to solve for X and compute error bounds as described below.
  4. 4.The system of equations is solved for X using the factored form of A.
  5. 5.Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it.
  6. 6.If equilibration was used, the matrix X is premultiplied by DS 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 contains the factorized form of A. If equed='Y', the matrix A has been equilibrated with scaling factors given by s. ab and afb will not be 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: uplo Character(1) Input
On entry: if uplo='U', the upper triangle of A is stored.
If uplo='L', the lower triangle of A is stored.
Constraint: uplo='U' or 'L'.
3: n Integer Input
On entry: n, the number of linear equations, i.e., the order of the matrix A.
Constraint: n0.
4: kd Integer Input
On entry: kd, the number of superdiagonals of the matrix A if uplo='U', or the number of subdiagonals if uplo='L'.
Constraint: kd0.
5: nrhs Integer Input
On entry: r, the number of right-hand sides, i.e., the number of columns of the matrix B.
Constraint: nrhs0.
6: 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 upper or lower triangle of the Hermitian band matrix A, except if fact='F' and equed='Y', in which case ab must contain the equilibrated matrix DSADS.
The matrix is stored in rows 1 to kd+1, more precisely,
  • if uplo='U', the elements of the upper triangle of A within the band must be stored with element Aij in ab(kd+1+i-j,j)​ for ​max(1,j-kd)ij;
  • if uplo='L', the elements of the lower triangle of A within the band must be stored with element Aij in ab(1+i-j,j)​ for ​jimin(n,j+kd).
On exit: if fact='E' and equed='Y', ab is overwritten by DSADS.
7: ldab Integer Input
On entry: the first dimension of the array ab as declared in the (sub)program from which f07hpf is called.
Constraint: ldabkd+1.
8: 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='F', afb contains the triangular factor U or L from the Cholesky factorization A=UHU or A=LLH of the band matrix A, in the same storage format as A. If equed='Y', afb is the factorized form of the equilibrated matrix A.
On exit: if fact='N', afb returns the triangular factor U or L from the Cholesky factorization A=UHU or A=LLH.
If fact='E', afb returns the triangular factor U or L from the Cholesky factorization A=UHU or A=LLH of the equilibrated matrix A (see the description of ab for the form of the equilibrated matrix).
9: ldafb Integer Input
On entry: the first dimension of the array afb as declared in the (sub)program from which f07hpf is called.
Constraint: ldafbkd+1.
10: 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='Y', equilibration was performed, i.e., A has been replaced by DSADS.
On exit: if fact='F', equed is unchanged from entry.
Otherwise, if no constraints are violated, equed specifies the form of the equilibration that was performed as specified above.
Constraint: if fact='F', equed='N' or 'Y'.
11: s(*) Real (Kind=nag_wp) array Input/Output
Note: the dimension of the array s must be at least max(1,n).
On entry: if fact='N' or 'E', s need not be set.
If fact='F' and equed='Y', s must contain the scale factors, DS, for A; each element of s must be positive.
On exit: if fact='F', s is unchanged from entry.
Otherwise, if no constraints are violated and equed='Y', s contains the scale factors, DS, for A; each element of s is positive.
12: 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 equed='Y', b is overwritten by DSB.
13: ldb Integer Input
On entry: the first dimension of the array b as declared in the (sub)program from which f07hpf is called.
Constraint: ldbmax(1,n).
14: 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='Y', and the solution to the equilibrated system is DS-1X.
15: ldx Integer Input
On entry: the first dimension of the array x as declared in the (sub)program from which f07hpf is called.
Constraint: ldxmax(1,n).
16: 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).
17: 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.
18: 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).
19: work(2×n) Complex (Kind=nag_wp) array Workspace
20: rwork(n) Real (Kind=nag_wp) array Workspace
21: 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
The leading minor of order value of A is not positive definite, so the factorization could not be completed, and the solution has not been computed. rcond=0.0 is returned.
info=n+1
U (or L) 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 c(n) is a modest linear function of n, and ε is the machine precision. See Section 10.1 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

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

When nk , the factorization of A requires approximately 4 n (k+1) 2 floating-point operations, where k is the number of superdiagonals.
For each right-hand side, computation of the backward error involves a minimum of 32nk floating-point operations. Each step of iterative refinement involves an additional 48nk 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 equations of the form Ax=b ; the number is usually 4 or 5 and never more than 11. Each solution involves approximately 16nk operations.
The real analogue of this routine is f07hbf.

10 Example

This example solves the equations
AX=B ,  
where A is the Hermitian positive definite band matrix
A = ( 9.39i+0.00 1.08-1.73i 0.00i+0.00 0.00i+0.00 1.08+1.73i 1.69i+0.00 -0.04+0.29i 0.00i+0.00 0.00i+0.00 -0.04-0.29i 2.65i+0.00 -0.33+2.24i 0.00i+0.00 0.00i+0.00 -0.33-2.24i 2.17i+0.00 )  
and
B = ( -12.42+68.42i 54.30-56.56i -9.93+00.88i 18.32+04.76i -27.30-00.01i -4.40+09.97i 5.31+23.63i 9.43+01.41i ) .  
Error estimates for the solutions, information on equilibration and an estimate of the reciprocal of the condition number of the scaled matrix A are also output.

10.1 Program Text

Program Text (f07hpfe.f90)

10.2 Program Data

Program Data (f07hpfe.d)

10.3 Program Results

Program Results (f07hpfe.r)