ztpcon.c
Go to the documentation of this file.
00001 /* ztpcon.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 ztpcon_(char *norm, char *uplo, char *diag, integer *n, 
00021         doublecomplex *ap, doublereal *rcond, doublecomplex *work, doublereal 
00022         *rwork, integer *info)
00023 {
00024     /* System generated locals */
00025     integer 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, kase1;
00033     doublereal scale;
00034     extern logical lsame_(char *, char *);
00035     integer isave[3];
00036     doublereal anorm;
00037     logical upper;
00038     doublereal xnorm;
00039     extern /* Subroutine */ int zlacn2_(integer *, doublecomplex *, 
00040             doublecomplex *, doublereal *, integer *, integer *);
00041     extern doublereal dlamch_(char *);
00042     extern /* Subroutine */ int xerbla_(char *, integer *);
00043     doublereal ainvnm;
00044     extern integer izamax_(integer *, doublecomplex *, integer *);
00045     logical onenrm;
00046     extern /* Subroutine */ int zdrscl_(integer *, doublereal *, 
00047             doublecomplex *, integer *);
00048     char normin[1];
00049     extern doublereal zlantp_(char *, char *, char *, integer *, 
00050             doublecomplex *, doublereal *);
00051     doublereal smlnum;
00052     logical nounit;
00053     extern /* Subroutine */ int zlatps_(char *, char *, char *, char *, 
00054             integer *, doublecomplex *, doublecomplex *, doublereal *, 
00055             doublereal *, integer *);
00056 
00057 
00058 /*  -- LAPACK routine (version 3.2) -- */
00059 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00060 /*     November 2006 */
00061 
00062 /*     Modified to call ZLACN2 in place of ZLACON, 10 Feb 03, SJH. */
00063 
00064 /*     .. Scalar Arguments .. */
00065 /*     .. */
00066 /*     .. Array Arguments .. */
00067 /*     .. */
00068 
00069 /*  Purpose */
00070 /*  ======= */
00071 
00072 /*  ZTPCON estimates the reciprocal of the condition number of a packed */
00073 /*  triangular matrix A, in either the 1-norm or the infinity-norm. */
00074 
00075 /*  The norm of A is computed and an estimate is obtained for */
00076 /*  norm(inv(A)), then the reciprocal of the condition number is */
00077 /*  computed as */
00078 /*     RCOND = 1 / ( norm(A) * norm(inv(A)) ). */
00079 
00080 /*  Arguments */
00081 /*  ========= */
00082 
00083 /*  NORM    (input) CHARACTER*1 */
00084 /*          Specifies whether the 1-norm condition number or the */
00085 /*          infinity-norm condition number is required: */
00086 /*          = '1' or 'O':  1-norm; */
00087 /*          = 'I':         Infinity-norm. */
00088 
00089 /*  UPLO    (input) CHARACTER*1 */
00090 /*          = 'U':  A is upper triangular; */
00091 /*          = 'L':  A is lower triangular. */
00092 
00093 /*  DIAG    (input) CHARACTER*1 */
00094 /*          = 'N':  A is non-unit triangular; */
00095 /*          = 'U':  A is unit triangular. */
00096 
00097 /*  N       (input) INTEGER */
00098 /*          The order of the matrix A.  N >= 0. */
00099 
00100 /*  AP      (input) COMPLEX*16 array, dimension (N*(N+1)/2) */
00101 /*          The upper or lower triangular matrix A, packed columnwise in */
00102 /*          a linear array.  The j-th column of A is stored in the array */
00103 /*          AP as follows: */
00104 /*          if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; */
00105 /*          if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. */
00106 /*          If DIAG = 'U', the diagonal elements of A are not referenced */
00107 /*          and are assumed to be 1. */
00108 
00109 /*  RCOND   (output) DOUBLE PRECISION */
00110 /*          The reciprocal of the condition number of the matrix A, */
00111 /*          computed as RCOND = 1/(norm(A) * norm(inv(A))). */
00112 
00113 /*  WORK    (workspace) COMPLEX*16 array, dimension (2*N) */
00114 
00115 /*  RWORK   (workspace) DOUBLE PRECISION array, dimension (N) */
00116 
00117 /*  INFO    (output) INTEGER */
00118 /*          = 0:  successful exit */
00119 /*          < 0:  if INFO = -i, the i-th argument had an illegal value */
00120 
00121 /*  ===================================================================== */
00122 
00123 /*     .. Parameters .. */
00124 /*     .. */
00125 /*     .. Local Scalars .. */
00126 /*     .. */
00127 /*     .. Local Arrays .. */
00128 /*     .. */
00129 /*     .. External Functions .. */
00130 /*     .. */
00131 /*     .. External Subroutines .. */
00132 /*     .. */
00133 /*     .. Intrinsic Functions .. */
00134 /*     .. */
00135 /*     .. Statement Functions .. */
00136 /*     .. */
00137 /*     .. Statement Function definitions .. */
00138 /*     .. */
00139 /*     .. Executable Statements .. */
00140 
00141 /*     Test the input parameters. */
00142 
00143     /* Parameter adjustments */
00144     --rwork;
00145     --work;
00146     --ap;
00147 
00148     /* Function Body */
00149     *info = 0;
00150     upper = lsame_(uplo, "U");
00151     onenrm = *(unsigned char *)norm == '1' || lsame_(norm, "O");
00152     nounit = lsame_(diag, "N");
00153 
00154     if (! onenrm && ! lsame_(norm, "I")) {
00155         *info = -1;
00156     } else if (! upper && ! lsame_(uplo, "L")) {
00157         *info = -2;
00158     } else if (! nounit && ! lsame_(diag, "U")) {
00159         *info = -3;
00160     } else if (*n < 0) {
00161         *info = -4;
00162     }
00163     if (*info != 0) {
00164         i__1 = -(*info);
00165         xerbla_("ZTPCON", &i__1);
00166         return 0;
00167     }
00168 
00169 /*     Quick return if possible */
00170 
00171     if (*n == 0) {
00172         *rcond = 1.;
00173         return 0;
00174     }
00175 
00176     *rcond = 0.;
00177     smlnum = dlamch_("Safe minimum") * (doublereal) max(1,*n);
00178 
00179 /*     Compute the norm of the triangular matrix A. */
00180 
00181     anorm = zlantp_(norm, uplo, diag, n, &ap[1], &rwork[1]);
00182 
00183 /*     Continue only if ANORM > 0. */
00184 
00185     if (anorm > 0.) {
00186 
00187 /*        Estimate the norm of the inverse of A. */
00188 
00189         ainvnm = 0.;
00190         *(unsigned char *)normin = 'N';
00191         if (onenrm) {
00192             kase1 = 1;
00193         } else {
00194             kase1 = 2;
00195         }
00196         kase = 0;
00197 L10:
00198         zlacn2_(n, &work[*n + 1], &work[1], &ainvnm, &kase, isave);
00199         if (kase != 0) {
00200             if (kase == kase1) {
00201 
00202 /*              Multiply by inv(A). */
00203 
00204                 zlatps_(uplo, "No transpose", diag, normin, n, &ap[1], &work[
00205                         1], &scale, &rwork[1], info);
00206             } else {
00207 
00208 /*              Multiply by inv(A'). */
00209 
00210                 zlatps_(uplo, "Conjugate transpose", diag, normin, n, &ap[1], 
00211                         &work[1], &scale, &rwork[1], info);
00212             }
00213             *(unsigned char *)normin = 'Y';
00214 
00215 /*           Multiply by 1/SCALE if doing so will not cause overflow. */
00216 
00217             if (scale != 1.) {
00218                 ix = izamax_(n, &work[1], &c__1);
00219                 i__1 = ix;
00220                 xnorm = (d__1 = work[i__1].r, abs(d__1)) + (d__2 = d_imag(&
00221                         work[ix]), abs(d__2));
00222                 if (scale < xnorm * smlnum || scale == 0.) {
00223                     goto L20;
00224                 }
00225                 zdrscl_(n, &scale, &work[1], &c__1);
00226             }
00227             goto L10;
00228         }
00229 
00230 /*        Compute the estimate of the reciprocal condition number. */
00231 
00232         if (ainvnm != 0.) {
00233             *rcond = 1. / anorm / ainvnm;
00234         }
00235     }
00236 
00237 L20:
00238     return 0;
00239 
00240 /*     End of ZTPCON */
00241 
00242 } /* ztpcon_ */


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