00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015
00016
00017
00018 static integer c__1 = 1;
00019
00020 int cppcon_(char *uplo, integer *n, complex *ap, real *anorm,
00021 real *rcond, complex *work, real *rwork, integer *info)
00022 {
00023
00024 integer i__1;
00025 real r__1, r__2;
00026
00027
00028 double r_imag(complex *);
00029
00030
00031 integer ix, kase;
00032 real scale;
00033 extern logical lsame_(char *, char *);
00034 integer isave[3];
00035 logical upper;
00036 extern int clacn2_(integer *, complex *, complex *, real
00037 *, integer *, integer *);
00038 extern integer icamax_(integer *, complex *, integer *);
00039 real scalel;
00040 extern doublereal slamch_(char *);
00041 real scaleu;
00042 extern int xerbla_(char *, integer *), clatps_(
00043 char *, char *, char *, char *, integer *, complex *, complex *,
00044 real *, real *, integer *);
00045 real ainvnm;
00046 extern int csrscl_(integer *, real *, complex *, integer
00047 *);
00048 char normin[1];
00049 real smlnum;
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131 --rwork;
00132 --work;
00133 --ap;
00134
00135
00136 *info = 0;
00137 upper = lsame_(uplo, "U");
00138 if (! upper && ! lsame_(uplo, "L")) {
00139 *info = -1;
00140 } else if (*n < 0) {
00141 *info = -2;
00142 } else if (*anorm < 0.f) {
00143 *info = -4;
00144 }
00145 if (*info != 0) {
00146 i__1 = -(*info);
00147 xerbla_("CPPCON", &i__1);
00148 return 0;
00149 }
00150
00151
00152
00153 *rcond = 0.f;
00154 if (*n == 0) {
00155 *rcond = 1.f;
00156 return 0;
00157 } else if (*anorm == 0.f) {
00158 return 0;
00159 }
00160
00161 smlnum = slamch_("Safe minimum");
00162
00163
00164
00165 kase = 0;
00166 *(unsigned char *)normin = 'N';
00167 L10:
00168 clacn2_(n, &work[*n + 1], &work[1], &ainvnm, &kase, isave);
00169 if (kase != 0) {
00170 if (upper) {
00171
00172
00173
00174 clatps_("Upper", "Conjugate transpose", "Non-unit", normin, n, &
00175 ap[1], &work[1], &scalel, &rwork[1], info);
00176 *(unsigned char *)normin = 'Y';
00177
00178
00179
00180 clatps_("Upper", "No transpose", "Non-unit", normin, n, &ap[1], &
00181 work[1], &scaleu, &rwork[1], info);
00182 } else {
00183
00184
00185
00186 clatps_("Lower", "No transpose", "Non-unit", normin, n, &ap[1], &
00187 work[1], &scalel, &rwork[1], info);
00188 *(unsigned char *)normin = 'Y';
00189
00190
00191
00192 clatps_("Lower", "Conjugate transpose", "Non-unit", normin, n, &
00193 ap[1], &work[1], &scaleu, &rwork[1], info);
00194 }
00195
00196
00197
00198 scale = scalel * scaleu;
00199 if (scale != 1.f) {
00200 ix = icamax_(n, &work[1], &c__1);
00201 i__1 = ix;
00202 if (scale < ((r__1 = work[i__1].r, dabs(r__1)) + (r__2 = r_imag(&
00203 work[ix]), dabs(r__2))) * smlnum || scale == 0.f) {
00204 goto L20;
00205 }
00206 csrscl_(n, &scale, &work[1], &c__1);
00207 }
00208 goto L10;
00209 }
00210
00211
00212
00213 if (ainvnm != 0.f) {
00214 *rcond = 1.f / ainvnm / *anorm;
00215 }
00216
00217 L20:
00218 return 0;
00219
00220
00221
00222 }