zpocon.c
Go to the documentation of this file.
00001 /* zpocon.f -- translated by f2c (version 20061008).
00002    You must link the resulting object file with libf2c:
00003         on Microsoft Windows system, link with libf2c.lib;
00004         on Linux or Unix systems, link with .../path/to/libf2c.a -lm
00005         or, if you install libf2c.a in a standard place, with -lf2c -lm
00006         -- in that order, at the end of the command line, as in
00007                 cc *.o -lf2c -lm
00008         Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
00009 
00010                 http://www.netlib.org/f2c/libf2c.zip
00011 */
00012 
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015 
00016 /* Table of constant values */
00017 
00018 static integer c__1 = 1;
00019 
00020 /* Subroutine */ int zpocon_(char *uplo, integer *n, doublecomplex *a, 
00021         integer *lda, doublereal *anorm, doublereal *rcond, doublecomplex *
00022         work, doublereal *rwork, integer *info)
00023 {
00024     /* System generated locals */
00025     integer a_dim1, a_offset, i__1;
00026     doublereal d__1, d__2;
00027 
00028     /* Builtin functions */
00029     double d_imag(doublecomplex *);
00030 
00031     /* Local variables */
00032     integer ix, kase;
00033     doublereal scale;
00034     extern logical lsame_(char *, char *);
00035     integer isave[3];
00036     logical upper;
00037     extern /* Subroutine */ int zlacn2_(integer *, doublecomplex *, 
00038             doublecomplex *, doublereal *, integer *, integer *);
00039     extern doublereal dlamch_(char *);
00040     doublereal scalel, scaleu;
00041     extern /* Subroutine */ int xerbla_(char *, integer *);
00042     doublereal ainvnm;
00043     extern integer izamax_(integer *, doublecomplex *, integer *);
00044     extern /* Subroutine */ int zdrscl_(integer *, doublereal *, 
00045             doublecomplex *, integer *);
00046     char normin[1];
00047     doublereal smlnum;
00048     extern /* Subroutine */ int zlatrs_(char *, char *, char *, char *, 
00049             integer *, doublecomplex *, integer *, doublecomplex *, 
00050             doublereal *, doublereal *, integer *);
00051 
00052 
00053 /*  -- LAPACK routine (version 3.2) -- */
00054 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00055 /*     November 2006 */
00056 
00057 /*     Modified to call ZLACN2 in place of ZLACON, 10 Feb 03, SJH. */
00058 
00059 /*     .. Scalar Arguments .. */
00060 /*     .. */
00061 /*     .. Array Arguments .. */
00062 /*     .. */
00063 
00064 /*  Purpose */
00065 /*  ======= */
00066 
00067 /*  ZPOCON estimates the reciprocal of the condition number (in the */
00068 /*  1-norm) of a complex Hermitian positive definite matrix using the */
00069 /*  Cholesky factorization A = U**H*U or A = L*L**H computed by ZPOTRF. */
00070 
00071 /*  An estimate is obtained for norm(inv(A)), and the reciprocal of the */
00072 /*  condition number is computed as RCOND = 1 / (ANORM * norm(inv(A))). */
00073 
00074 /*  Arguments */
00075 /*  ========= */
00076 
00077 /*  UPLO    (input) CHARACTER*1 */
00078 /*          = 'U':  Upper triangle of A is stored; */
00079 /*          = 'L':  Lower triangle of A is stored. */
00080 
00081 /*  N       (input) INTEGER */
00082 /*          The order of the matrix A.  N >= 0. */
00083 
00084 /*  A       (input) COMPLEX*16 array, dimension (LDA,N) */
00085 /*          The triangular factor U or L from the Cholesky factorization */
00086 /*          A = U**H*U or A = L*L**H, as computed by ZPOTRF. */
00087 
00088 /*  LDA     (input) INTEGER */
00089 /*          The leading dimension of the array A.  LDA >= max(1,N). */
00090 
00091 /*  ANORM   (input) DOUBLE PRECISION */
00092 /*          The 1-norm (or infinity-norm) of the Hermitian matrix A. */
00093 
00094 /*  RCOND   (output) DOUBLE PRECISION */
00095 /*          The reciprocal of the condition number of the matrix A, */
00096 /*          computed as RCOND = 1/(ANORM * AINVNM), where AINVNM is an */
00097 /*          estimate of the 1-norm of inv(A) computed in this routine. */
00098 
00099 /*  WORK    (workspace) COMPLEX*16 array, dimension (2*N) */
00100 
00101 /*  RWORK   (workspace) DOUBLE PRECISION array, dimension (N) */
00102 
00103 /*  INFO    (output) INTEGER */
00104 /*          = 0:  successful exit */
00105 /*          < 0:  if INFO = -i, the i-th argument had an illegal value */
00106 
00107 /*  ===================================================================== */
00108 
00109 /*     .. Parameters .. */
00110 /*     .. */
00111 /*     .. Local Scalars .. */
00112 /*     .. */
00113 /*     .. Local Arrays .. */
00114 /*     .. */
00115 /*     .. External Functions .. */
00116 /*     .. */
00117 /*     .. External Subroutines .. */
00118 /*     .. */
00119 /*     .. Intrinsic Functions .. */
00120 /*     .. */
00121 /*     .. Statement Functions .. */
00122 /*     .. */
00123 /*     .. Statement Function definitions .. */
00124 /*     .. */
00125 /*     .. Executable Statements .. */
00126 
00127 /*     Test the input parameters. */
00128 
00129     /* Parameter adjustments */
00130     a_dim1 = *lda;
00131     a_offset = 1 + a_dim1;
00132     a -= a_offset;
00133     --work;
00134     --rwork;
00135 
00136     /* Function Body */
00137     *info = 0;
00138     upper = lsame_(uplo, "U");
00139     if (! upper && ! lsame_(uplo, "L")) {
00140         *info = -1;
00141     } else if (*n < 0) {
00142         *info = -2;
00143     } else if (*lda < max(1,*n)) {
00144         *info = -4;
00145     } else if (*anorm < 0.) {
00146         *info = -5;
00147     }
00148     if (*info != 0) {
00149         i__1 = -(*info);
00150         xerbla_("ZPOCON", &i__1);
00151         return 0;
00152     }
00153 
00154 /*     Quick return if possible */
00155 
00156     *rcond = 0.;
00157     if (*n == 0) {
00158         *rcond = 1.;
00159         return 0;
00160     } else if (*anorm == 0.) {
00161         return 0;
00162     }
00163 
00164     smlnum = dlamch_("Safe minimum");
00165 
00166 /*     Estimate the 1-norm of inv(A). */
00167 
00168     kase = 0;
00169     *(unsigned char *)normin = 'N';
00170 L10:
00171     zlacn2_(n, &work[*n + 1], &work[1], &ainvnm, &kase, isave);
00172     if (kase != 0) {
00173         if (upper) {
00174 
00175 /*           Multiply by inv(U'). */
00176 
00177             zlatrs_("Upper", "Conjugate transpose", "Non-unit", normin, n, &a[
00178                     a_offset], lda, &work[1], &scalel, &rwork[1], info);
00179             *(unsigned char *)normin = 'Y';
00180 
00181 /*           Multiply by inv(U). */
00182 
00183             zlatrs_("Upper", "No transpose", "Non-unit", normin, n, &a[
00184                     a_offset], lda, &work[1], &scaleu, &rwork[1], info);
00185         } else {
00186 
00187 /*           Multiply by inv(L). */
00188 
00189             zlatrs_("Lower", "No transpose", "Non-unit", normin, n, &a[
00190                     a_offset], lda, &work[1], &scalel, &rwork[1], info);
00191             *(unsigned char *)normin = 'Y';
00192 
00193 /*           Multiply by inv(L'). */
00194 
00195             zlatrs_("Lower", "Conjugate transpose", "Non-unit", normin, n, &a[
00196                     a_offset], lda, &work[1], &scaleu, &rwork[1], info);
00197         }
00198 
00199 /*        Multiply by 1/SCALE if doing so will not cause overflow. */
00200 
00201         scale = scalel * scaleu;
00202         if (scale != 1.) {
00203             ix = izamax_(n, &work[1], &c__1);
00204             i__1 = ix;
00205             if (scale < ((d__1 = work[i__1].r, abs(d__1)) + (d__2 = d_imag(&
00206                     work[ix]), abs(d__2))) * smlnum || scale == 0.) {
00207                 goto L20;
00208             }
00209             zdrscl_(n, &scale, &work[1], &c__1);
00210         }
00211         goto L10;
00212     }
00213 
00214 /*     Compute the estimate of the reciprocal condition number. */
00215 
00216     if (ainvnm != 0.) {
00217         *rcond = 1. / ainvnm / *anorm;
00218     }
00219 
00220 L20:
00221     return 0;
00222 
00223 /*     End of ZPOCON */
00224 
00225 } /* zpocon_ */


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:56:43