nag_zspcon (f07quc) estimates the condition number of a complex symmetric matrix
, where
has been factorized by
nag_zsptrf (f07qrc), using packed storage.
nag_zspcon (f07quc) estimates the condition number (in the
-norm) of a complex symmetric matrix
:
Since
is symmetric,
.
The function should be preceded by a call to
nag_zsp_norm (f16ugc) to compute
and a call to
nag_zsptrf (f07qrc) to compute the Bunch–Kaufman factorization of
. The function 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.
A call to nag_zspcon (f07quc) 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
nag_zsptrs (f07qsc) 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_dspcon (f07pgc).
This example estimates the condition number in the
-norm (or
-norm) of the matrix
, where
Here
is symmetric, stored in packed form, and must first be factorized by
nag_zsptrf (f07qrc). The true condition number in the
-norm is
.