hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_lapack_zgbcon (f07bu)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_lapack_zgbcon (f07bu) estimates the condition number of a complex band matrix A, where A has been factorized by nag_lapack_zgbtrf (f07br).

Syntax

[rcond, info] = f07bu(norm_p, kl, ku, ab, ipiv, anorm, 'n', n)
[rcond, info] = nag_lapack_zgbcon(norm_p, kl, ku, ab, ipiv, anorm, 'n', n)

Description

nag_lapack_zgbcon (f07bu) estimates the condition number of a complex band matrix A, in either the 1-norm or the -norm:
κ1A=A1A-11   or   κA=AA-1 .  
Note that κA=κ1AH.
Because the condition number is infinite if A is singular, the function actually returns an estimate of the reciprocal of the condition number.
The function should be preceded by a call to to compute A1 or A, and a call to nag_lapack_zgbtrf (f07br) to compute the LU factorization of A. The function then uses Higham's implementation of Hager's method (see Higham (1988)) to estimate A-11 or A-1.

References

Higham N J (1988) FORTRAN codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation ACM Trans. Math. Software 14 381–396

Parameters

Compulsory Input Parameters

1:     norm_p – string (length ≥ 1)
Indicates whether κ1A or κA is estimated.
norm_p='1' or 'O'
κ1A is estimated.
norm_p='I'
κA is estimated.
Constraint: norm_p='1', 'O' or 'I'.
2:     kl int64int32nag_int scalar
kl, the number of subdiagonals within the band of the matrix A.
Constraint: kl0.
3:     ku int64int32nag_int scalar
ku, the number of superdiagonals within the band of the matrix A.
Constraint: ku0.
4:     abldab: – complex array
The first dimension of the array ab must be at least 2×kl+ku+1.
The second dimension of the array ab must be at least max1,n.
The LU factorization of A, as returned by nag_lapack_zgbtrf (f07br).
5:     ipiv: int64int32nag_int array
The dimension of the array ipiv must be at least max1,n
The pivot indices, as returned by nag_lapack_zgbtrf (f07br).
6:     anorm – double scalar
If norm_p='1' or 'O', the 1-norm of the original matrix A.
If norm_p='I', the -norm of the original matrix A.
anorm must be computed either before calling nag_lapack_zgbtrf (f07br) or else from a copy of the original matrix A (see Example).
Constraint: anorm0.0.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the second dimension of the array ab.
n, the order of the matrix A.
Constraint: n0.

Output Parameters

1:     rcond – double scalar
An estimate of the reciprocal of the condition number of A. rcond is set to zero if exact singularity is detected or the estimate underflows. If rcond is less than machine precision, A is singular to working precision.
2:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

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.

Accuracy

The computed estimate rcond is never less than the true value ρ, and in practice is nearly always less than 10ρ, although examples can be constructed where rcond is much larger.

Further Comments

A call to nag_lapack_zgbcon (f07bu) involves solving a number of systems of linear equations of the form Ax=b or AHx=b; the number is usually 5 and never more than 11. Each solution involves approximately 8n2kl+ku real floating-point operations (assuming nkl and nku) but takes considerably longer than a call to nag_lapack_zgbtrs (f07bs) with one right-hand side, because extra care is taken to avoid overflow when A is approximately singular.
The real analogue of this function is nag_lapack_dgbcon (f07bg).

Example

This example estimates the condition number in the 1-norm of the matrix A, where
A= -1.65+2.26i -2.05-0.85i 0.97-2.84i 0.00+0.00i 0.00+6.30i -1.48-1.75i -3.99+4.01i 0.59-0.48i 0.00+0.00i -0.77+2.83i -1.06+1.94i 3.33-1.04i 0.00+0.00i 0.00+0.00i 4.48-1.09i -0.46-1.72i .  
function f07bu_example


fprintf('f07bu example results\n\n');

m = int64(4);
kl = int64(1);
ku = int64(2);
ab =  [0    + 0i,     0    + 0i,     0.97 - 2.84i,  0.59 - 0.48i;
       0    + 0i,    -2.05 - 0.85i, -3.99 + 4.01i,  3.33 - 1.04i;
      -1.65 + 2.26i, -1.48 - 1.75i, -1.06 + 1.94i, -0.46 - 1.72i;
       0    + 6.3i,  -0.77 + 2.83i,  4.48 - 1.09i,  0    + 0i];

norm_p = 'one';
anorm = f16ub( ...
               norm_p, m, kl, ku, ab);

% Fcatorize
abf = [ complex(zeros(kl,m)); ab];
[abf, ipiv, info] = f07br( ...
                           m, kl, ku, abf);

[rcond, info] = f07bu( ...
                       norm_p, kl, ku, abf, ipiv, anorm);

fprintf('Estimate of condition number = %9.2e\n', 1/rcond);


f07bu example results

Estimate of condition number =  1.04e+02

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

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