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 stpcon_(char *norm, char *uplo, char *diag, integer *n,
00021 real *ap, real *rcond, real *work, integer *iwork, integer *info)
00022 {
00023
00024 integer i__1;
00025 real r__1;
00026
00027
00028 integer ix, kase, kase1;
00029 real scale;
00030 extern logical lsame_(char *, char *);
00031 integer isave[3];
00032 real anorm;
00033 extern int srscl_(integer *, real *, real *, integer *);
00034 logical upper;
00035 real xnorm;
00036 extern int slacn2_(integer *, real *, real *, integer *,
00037 real *, integer *, integer *);
00038 extern doublereal slamch_(char *);
00039 extern int xerbla_(char *, integer *);
00040 extern integer isamax_(integer *, real *, integer *);
00041 real ainvnm;
00042 logical onenrm;
00043 extern doublereal slantp_(char *, char *, char *, integer *, real *, real
00044 *);
00045 char normin[1];
00046 extern int slatps_(char *, char *, char *, char *,
00047 integer *, real *, real *, real *, real *, integer *);
00048 real smlnum;
00049 logical nounit;
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
00132
00133
00134 --iwork;
00135 --work;
00136 --ap;
00137
00138
00139 *info = 0;
00140 upper = lsame_(uplo, "U");
00141 onenrm = *(unsigned char *)norm == '1' || lsame_(norm, "O");
00142 nounit = lsame_(diag, "N");
00143
00144 if (! onenrm && ! lsame_(norm, "I")) {
00145 *info = -1;
00146 } else if (! upper && ! lsame_(uplo, "L")) {
00147 *info = -2;
00148 } else if (! nounit && ! lsame_(diag, "U")) {
00149 *info = -3;
00150 } else if (*n < 0) {
00151 *info = -4;
00152 }
00153 if (*info != 0) {
00154 i__1 = -(*info);
00155 xerbla_("STPCON", &i__1);
00156 return 0;
00157 }
00158
00159
00160
00161 if (*n == 0) {
00162 *rcond = 1.f;
00163 return 0;
00164 }
00165
00166 *rcond = 0.f;
00167 smlnum = slamch_("Safe minimum") * (real) max(1,*n);
00168
00169
00170
00171 anorm = slantp_(norm, uplo, diag, n, &ap[1], &work[1]);
00172
00173
00174
00175 if (anorm > 0.f) {
00176
00177
00178
00179 ainvnm = 0.f;
00180 *(unsigned char *)normin = 'N';
00181 if (onenrm) {
00182 kase1 = 1;
00183 } else {
00184 kase1 = 2;
00185 }
00186 kase = 0;
00187 L10:
00188 slacn2_(n, &work[*n + 1], &work[1], &iwork[1], &ainvnm, &kase, isave);
00189 if (kase != 0) {
00190 if (kase == kase1) {
00191
00192
00193
00194 slatps_(uplo, "No transpose", diag, normin, n, &ap[1], &work[
00195 1], &scale, &work[(*n << 1) + 1], info);
00196 } else {
00197
00198
00199
00200 slatps_(uplo, "Transpose", diag, normin, n, &ap[1], &work[1],
00201 &scale, &work[(*n << 1) + 1], info);
00202 }
00203 *(unsigned char *)normin = 'Y';
00204
00205
00206
00207 if (scale != 1.f) {
00208 ix = isamax_(n, &work[1], &c__1);
00209 xnorm = (r__1 = work[ix], dabs(r__1));
00210 if (scale < xnorm * smlnum || scale == 0.f) {
00211 goto L20;
00212 }
00213 srscl_(n, &scale, &work[1], &c__1);
00214 }
00215 goto L10;
00216 }
00217
00218
00219
00220 if (ainvnm != 0.f) {
00221 *rcond = 1.f / anorm / ainvnm;
00222 }
00223 }
00224
00225 L20:
00226 return 0;
00227
00228
00229
00230 }