f07guf (zppcon) estimates the condition number of a complex Hermitian positive definite matrix
, where
has been factorized by
f07grf (zpptrf), using packed storage.
f07guf (zppcon) estimates the condition number (in the
-norm) of a complex Hermitian positive definite matrix
:
Since
is Hermitian,
.
The routine should be preceded by a call to
f06udf to compute
and a call to
f07grf (zpptrf) to compute the Cholesky factorization of
. The routine then uses Higham's implementation of Hager's method (see
Higham (1988)) to estimate
.
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
f07guf (zppcon) 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 but takes considerably longer than a call to
f07gsf (zpptrs) with one right-hand side, because extra care is taken to avoid overflow when
is approximately singular.
The real analogue of this routine is
f07ggf (dppcon).
This example estimates the condition number in the
-norm (or
-norm) of the matrix
, where
Here
is Hermitian positive definite, stored in packed form, and must first be factorized by
f07grf (zpptrf). The true condition number in the
-norm is
.