F07CGF (DGTCON) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F07CGF (DGTCON)

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

F07CGF (DGTCON) estimates the reciprocal condition number of a real n  by n  tridiagonal matrix A , using the LU  factorization returned by F07CDF (DGTTRF).

2  Specification

SUBROUTINE F07CGF ( NORM, N, DL, D, DU, DU2, IPIV, ANORM, RCOND, WORK, IWORK, INFO)
INTEGER  N, IPIV(*), IWORK(N), INFO
REAL (KIND=nag_wp)  DL(*), D(*), DU(*), DU2(*), ANORM, RCOND, WORK(2*N)
CHARACTER(1)  NORM
The routine may be called by its LAPACK name dgtcon.

3  Description

F07CGF (DGTCON) should be preceded by a call to F07CDF (DGTTRF), which uses Gaussian elimination with partial pivoting and row interchanges to factorize the matrix A  as
A=PLU ,
where P  is a permutation matrix, L  is unit lower triangular with at most one nonzero subdiagonal element in each column, and U  is an upper triangular band matrix, with two superdiagonals. F07CGF (DGTCON) then utilizes the factorization to estimate either A-11  or A-1 , from which the estimate of the reciprocal of the condition number of A , 1/κA  is computed as either
1 / κ1 A = 1 / A1 A-11
or
1 / κ A = 1 / A A-1 .
1/κA  is returned, rather than κA , since when A  is singular κA  is infinite.
Note that κA=κ1AT .

4  References

Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia

5  Parameters

1:     NORM – CHARACTER(1)Input
On entry: specifies the norm to be used to estimate κA.
NORM='1' or 'O'
Estimate κ1A.
NORM='I'
Estimate κA.
Constraint: NORM='1', 'O' or 'I'.
2:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
3:     DL(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array DL must be at least max1,N-1.
On entry: must contain the n-1 multipliers that define the matrix L of the LU factorization of A.
4:     D(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array D must be at least max1,N.
On entry: must contain the n diagonal elements of the upper triangular matrix U from the LU factorization of A.
5:     DU(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array DU must be at least max1,N-1.
On entry: must contain the n-1 elements of the first superdiagonal of U.
6:     DU2(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array DU2 must be at least max1,N-2.
On entry: must contain the n-2 elements of the second superdiagonal of U.
7:     IPIV(*) – INTEGER arrayInput
Note: the dimension of the array IPIV must be at least max1,N.
On entry: must contain the n pivot indices that define the permutation matrix P. At the ith step, row i of the matrix was interchanged with row IPIVi, and IPIVi must always be either i or i+1, IPIVi=i indicating that a row interchange was not performed.
8:     ANORM – REAL (KIND=nag_wp)Input
On entry: if NORM='1' or 'O', the 1-norm of the original matrix A.
If NORM='I', the -norm of the original matrix A.
ANORM may be computed by calling F06RNF with the same value for the parameter NORM.
ANORM must be computed either before calling F07CDF (DGTTRF) or else from a copy of the original matrix A (see Section 9).
Constraint: ANORM0.0.
9:     RCOND – REAL (KIND=nag_wp)Output
On exit: contains an estimate of the reciprocal condition number.
10:   WORK(2×N) – REAL (KIND=nag_wp) arrayWorkspace
11:   IWORK(N) – INTEGER arrayWorkspace
12:   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 argument had an illegal value. An explanatory message is output, and execution of the program is terminated.

7  Accuracy

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.

8  Further Comments

The condition number estimation typically requires between four and five solves and never more than eleven solves, following the factorization. The total number of floating point operations required to perform a solve is proportional to n .
The complex analogue of this routine is F07CUF (ZGTCON).

9  Example

This example estimates the condition number in the 1-norm of the tridiagonal matrix A  given by
A = 3.0 2.1 0.0 0.0 0.0 3.4 2.3 -1.0 0.0 0.0 0.0 3.6 -5.0 1.9 0.0 0.0 0.0 7.0 -0.9 8.0 0.0 0.0 0.0 -6.0 7.1 .

9.1  Program Text

Program Text (f07cgfe.f90)

9.2  Program Data

Program Data (f07cgfe.d)

9.3  Program Results

Program Results (f07cgfe.r)


F07CGF (DGTCON) (PDF version)
F07 Chapter Contents
F07 Chapter Introduction
NAG Library Manual

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