zptcon - compute the reciprocal of the condition number (in the 1-norm) of a complex Hermitian positive definite tridiagonal matrix using the factorization A = L*D*L**H or A = U**H*D*U computed by CPTTRF
SUBROUTINE ZPTCON( N, DIAG, OFFD, ANORM, RCOND, WORK, INFO) DOUBLE COMPLEX OFFD(*) INTEGER N, INFO DOUBLE PRECISION ANORM, RCOND DOUBLE PRECISION DIAG(*), WORK(*)
SUBROUTINE ZPTCON_64( N, DIAG, OFFD, ANORM, RCOND, WORK, INFO) DOUBLE COMPLEX OFFD(*) INTEGER*8 N, INFO DOUBLE PRECISION ANORM, RCOND DOUBLE PRECISION DIAG(*), WORK(*)
SUBROUTINE PTCON( [N], DIAG, OFFD, ANORM, RCOND, [WORK], [INFO]) COMPLEX(8), DIMENSION(:) :: OFFD INTEGER :: N, INFO REAL(8) :: ANORM, RCOND REAL(8), DIMENSION(:) :: DIAG, WORK
SUBROUTINE PTCON_64( [N], DIAG, OFFD, ANORM, RCOND, [WORK], [INFO]) COMPLEX(8), DIMENSION(:) :: OFFD INTEGER(8) :: N, INFO REAL(8) :: ANORM, RCOND REAL(8), DIMENSION(:) :: DIAG, WORK
#include <sunperf.h>
void zptcon(int n, double *diag, doublecomplex *offd, double anorm, double *rcond, int *info);
void zptcon_64(long n, double *diag, doublecomplex *offd, double anorm, double *rcond, long *info);
zptcon computes the reciprocal of the condition number (in the 1-norm) of a complex Hermitian positive definite tridiagonal matrix using the factorization A = L*D*L**H or A = U**H*D*U computed by CPTTRF.
Norm(inv(A))
is computed by a direct method, and the reciprocal of
the condition number is computed as
RCOND = 1 / (ANORM * norm(inv(A))).
inv(A)
computed in this routine.
= 0: successful exit
< 0: if INFO = -i, the i-th argument had an illegal value
The method used is described in Nicholas J. Higham, ``Efficient Algorithms for Computing the Condition Number of a Tridiagonal Matrix'', SIAM J. Sci. Stat. Comput., Vol. 7, No. 1, January 1986.