f07bgf (dgbcon) estimates the condition number of a real band matrix
, where
has been factorized by
f07bdf (dgbtrf).
f07bgf (dgbcon) estimates the condition number of a real band matrix
, in either the
-norm or the
-norm:
The routine should be preceded by a call to
f06rbf to compute
or
, and a call to
f07bdf (dgbtrf) to compute the
factorization of
. The routine then uses Higham's implementation of Hager's method (see
Higham (1988)) to estimate
or
.
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
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.
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.
A call to
f07bgf (dgbcon) involves solving a number of systems of linear equations of the form
or
; the number is usually
or
and never more than
. Each solution involves approximately
floating-point operations (assuming
and
) but takes considerably longer than a call to
f07bef (dgbtrs) with one right-hand side, because extra care is taken to avoid overflow when
is approximately singular.
The complex analogue of this routine is
f07buf (zgbcon).
This example estimates the condition number in the
-norm of the matrix
, where
Here
is nonsymmetric and is treated as a band matrix, which must first be factorized by
f07bdf (dgbtrf). The true condition number in the
-norm is
.