F07HSF (ZPBTRS) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F07HSF (ZPBTRS)

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

F07HSF (ZPBTRS) solves a complex Hermitian positive definite band system of linear equations with multiple right-hand sides,
AX=B ,
where A has been factorized by F07HRF (ZPBTRF).

2  Specification

SUBROUTINE F07HSF ( UPLO, N, KD, NRHS, AB, LDAB, B, LDB, INFO)
INTEGER  N, KD, NRHS, LDAB, LDB, INFO
COMPLEX (KIND=nag_wp)  AB(LDAB,*), B(LDB,*)
CHARACTER(1)  UPLO
The routine may be called by its LAPACK name zpbtrs.

3  Description

F07HSF (ZPBTRS) is used to solve a complex Hermitian positive definite band system of linear equations AX=B, the routine must be preceded by a call to F07HRF (ZPBTRF) which computes the Cholesky factorization of A. The solution X is computed by forward and backward substitution.
If UPLO='U', A=UHU, where U is upper triangular; the solution X is computed by solving UHY=B and then UX=Y.
If UPLO='L', A=LLH, where L is lower triangular; the solution X is computed by solving LY=B and then LHX=Y.

4  References

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

5  Parameters

1:     UPLO – CHARACTER(1)Input
On entry: specifies how A has been factorized.
UPLO='U'
A=UHU, where U is upper triangular.
UPLO='L'
A=LLH, where L is lower triangular.
Constraint: UPLO='U' or 'L'.
2:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
3:     KD – INTEGERInput
On entry: kd, the number of superdiagonals or subdiagonals of the matrix A.
Constraint: KD0.
4:     NRHS – INTEGERInput
On entry: r, the number of right-hand sides.
Constraint: NRHS0.
5:     AB(LDAB,*) – COMPLEX (KIND=nag_wp) arrayInput
Note: the second dimension of the array AB must be at least max1,N.
On entry: the Cholesky factor of A, as returned by F07HRF (ZPBTRF).
6:     LDAB – INTEGERInput
On entry: the first dimension of the array AB as declared in the (sub)program from which F07HSF (ZPBTRS) is called.
Constraint: LDABKD+1.
7:     B(LDB,*) – COMPLEX (KIND=nag_wp) arrayInput/Output
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.
On exit: the n by r solution matrix X.
8:     LDB – INTEGERInput
On entry: the first dimension of the array B as declared in the (sub)program from which F07HSF (ZPBTRS) is called.
Constraint: LDBmax1,N.
9:     INFO – INTEGEROutput
On exit: INFO=0 unless the routine detects an error (see Section 6).

6  Error Indicators and Warnings

Errors or warnings detected by the routine:
INFO<0
If INFO=-i, the ith parameter had an illegal value. An explanatory message is output, and execution of the program is terminated.

7  Accuracy

For each right-hand side vector b, the computed solution x is the exact solution of a perturbed system of equations A+Ex=b, where ck+1 is a modest linear function of k+1, and ε is the machine precision.
If x^ is the true solution, then the computed solution x satisfies a forward error bound of the form
x-x^ x ck+1condA,xε
where condA,x=A-1Ax/xcondA=A-1AκA. Note that condA,x can be much smaller than condA.
Forward and backward error bounds can be computed by calling F07HVF (ZPBRFS), and an estimate for κA (=κ1A) can be obtained by calling F07HUF (ZPBCON).

8  Further Comments

The total number of real floating point operations is approximately 16nkr, assuming nk.
This routine may be followed by a call to F07HVF (ZPBRFS) to refine the solution and return an error estimate.
The real analogue of this routine is F07HEF (DPBTRS).

9  Example

This example solves the system of equations AX=B, where
A= 9.39+0.00i 1.08-1.73i 0.00+0.00i 0.00+0.00i 1.08+1.73i 1.69+0.00i -0.04+0.29i 0.00+0.00i 0.00+0.00i -0.04-0.29i 2.65+0.00i -0.33+2.24i 0.00+0.00i 0.00+0.00i -0.33-2.24i 2.17+0.00i
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 .
Here A is Hermitian positive definite, and is treated as a band matrix, which must first be factorized by F07HRF (ZPBTRF).

9.1  Program Text

Program Text (f07hsfe.f90)

9.2  Program Data

Program Data (f07hsfe.d)

9.3  Program Results

Program Results (f07hsfe.r)


F07HSF (ZPBTRS) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

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