PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zpbcon (f07hu)
Purpose
nag_lapack_zpbcon (f07hu) estimates the condition number of a complex Hermitian positive definite band matrix
, where
has been factorized by
nag_lapack_zpbtrf (f07hr).
Syntax
Description
nag_lapack_zpbcon (f07hu) estimates the condition number (in the
-norm) of a complex Hermitian positive definite band matrix
:
Since
is Hermitian,
.
Because is infinite if is singular, the function actually returns an estimate of the reciprocal of .
The function should be preceded by a computation of
and a call to
nag_lapack_zpbtrf (f07hr) to compute the Cholesky factorization of
. The function then uses Higham's implementation of Hager's method (see
Higham (1988)) to estimate
.
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:
– string (length ≥ 1)
-
Specifies how
has been factorized.
- , where is upper triangular.
- , where is lower triangular.
Constraint:
or .
- 2:
– int64int32nag_int scalar
-
, the number of superdiagonals or subdiagonals of the matrix .
Constraint:
.
- 3:
– complex array
-
The first dimension of the array
ab must be at least
.
The second dimension of the array
ab must be at least
.
The Cholesky factor of
, as returned by
nag_lapack_zpbtrf (f07hr).
- 4:
– double scalar
-
The
-norm of the
original matrix
.
anorm must be computed either
before calling
nag_lapack_zpbtrf (f07hr) or else from a
copy of the original matrix
.
Constraint:
.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
ab.
, the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– double scalar
-
An estimate of the reciprocal of the condition number of
.
rcond is set to zero if exact singularity is detected or the estimate underflows. If
rcond is less than
machine precision,
is singular to working precision.
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , argument 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
, although examples can be constructed where
rcond is much larger.
Further Comments
A call to
nag_lapack_zpbcon (f07hu) involves solving a number of systems of linear equations of the form
; the number is usually
and never more than
. Each solution involves approximately
real floating-point operations (assuming
) but takes considerably longer than a call to
nag_lapack_zpbtrs (f07hs) with one right-hand side, because extra care is taken to avoid overflow when
is approximately singular.
The real analogue of this function is
nag_lapack_dpbcon (f07hg).
Example
This example estimates the condition number in the
-norm (or
-norm) of the matrix
, where
Here
is Hermitian positive definite, and is treated as a band matrix, which must first be factorized by
nag_lapack_zpbtrf (f07hr). The true condition number in the
-norm is
.
Open in the MATLAB editor:
f07hu_example
function f07hu_example
fprintf('f07hu example results\n\n');
uplo = 'L';
kd = int64(1);
n = int64(4);
ab = [ 9.39 + 0i, 1.69 + 0i, 2.65 + 0i, 2.17 + 0i;
1.08 - 1.73i, -0.04 + 0.29i, -0.33 + 2.24i 0 + 0i];
[abf, info] = f07hr( ...
uplo, kd, ab);
abn = [0 + 0i, ab(2,1:n-1);
ab];
anorm = norm(abn,1);
[rcond, info] = f07hu( ...
uplo, kd, abf, anorm);
fprintf('Estimate of Condition number = %7.2e\n',1/rcond);
f07hu example results
Estimate of Condition number = 1.32e+02
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015