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 cpbcon_(char *uplo, integer *n, integer *kd, complex *ab,
00021 integer *ldab, real *anorm, real *rcond, complex *work, real *rwork,
00022 integer *info)
00023 {
00024
00025 integer ab_dim1, ab_offset, i__1;
00026 real r__1, r__2;
00027
00028
00029 double r_imag(complex *);
00030
00031
00032 integer ix, kase;
00033 real scale;
00034 extern logical lsame_(char *, char *);
00035 integer isave[3];
00036 logical upper;
00037 extern int clacn2_(integer *, complex *, complex *, real
00038 *, integer *, integer *);
00039 extern integer icamax_(integer *, complex *, integer *);
00040 real scalel;
00041 extern doublereal slamch_(char *);
00042 extern int clatbs_(char *, char *, char *, char *,
00043 integer *, integer *, complex *, integer *, complex *, real *,
00044 real *, integer *);
00045 real scaleu;
00046 extern int xerbla_(char *, integer *);
00047 real ainvnm;
00048 extern int csrscl_(integer *, real *, complex *, integer
00049 *);
00050 char normin[1];
00051 real smlnum;
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
00135
00136
00137
00138
00139
00140 ab_dim1 = *ldab;
00141 ab_offset = 1 + ab_dim1;
00142 ab -= ab_offset;
00143 --work;
00144 --rwork;
00145
00146
00147 *info = 0;
00148 upper = lsame_(uplo, "U");
00149 if (! upper && ! lsame_(uplo, "L")) {
00150 *info = -1;
00151 } else if (*n < 0) {
00152 *info = -2;
00153 } else if (*kd < 0) {
00154 *info = -3;
00155 } else if (*ldab < *kd + 1) {
00156 *info = -5;
00157 } else if (*anorm < 0.f) {
00158 *info = -6;
00159 }
00160 if (*info != 0) {
00161 i__1 = -(*info);
00162 xerbla_("CPBCON", &i__1);
00163 return 0;
00164 }
00165
00166
00167
00168 *rcond = 0.f;
00169 if (*n == 0) {
00170 *rcond = 1.f;
00171 return 0;
00172 } else if (*anorm == 0.f) {
00173 return 0;
00174 }
00175
00176 smlnum = slamch_("Safe minimum");
00177
00178
00179
00180 kase = 0;
00181 *(unsigned char *)normin = 'N';
00182 L10:
00183 clacn2_(n, &work[*n + 1], &work[1], &ainvnm, &kase, isave);
00184 if (kase != 0) {
00185 if (upper) {
00186
00187
00188
00189 clatbs_("Upper", "Conjugate transpose", "Non-unit", normin, n, kd,
00190 &ab[ab_offset], ldab, &work[1], &scalel, &rwork[1], info);
00191 *(unsigned char *)normin = 'Y';
00192
00193
00194
00195 clatbs_("Upper", "No transpose", "Non-unit", normin, n, kd, &ab[
00196 ab_offset], ldab, &work[1], &scaleu, &rwork[1], info);
00197 } else {
00198
00199
00200
00201 clatbs_("Lower", "No transpose", "Non-unit", normin, n, kd, &ab[
00202 ab_offset], ldab, &work[1], &scalel, &rwork[1], info);
00203 *(unsigned char *)normin = 'Y';
00204
00205
00206
00207 clatbs_("Lower", "Conjugate transpose", "Non-unit", normin, n, kd,
00208 &ab[ab_offset], ldab, &work[1], &scaleu, &rwork[1], info);
00209 }
00210
00211
00212
00213 scale = scalel * scaleu;
00214 if (scale != 1.f) {
00215 ix = icamax_(n, &work[1], &c__1);
00216 i__1 = ix;
00217 if (scale < ((r__1 = work[i__1].r, dabs(r__1)) + (r__2 = r_imag(&
00218 work[ix]), dabs(r__2))) * smlnum || scale == 0.f) {
00219 goto L20;
00220 }
00221 csrscl_(n, &scale, &work[1], &c__1);
00222 }
00223 goto L10;
00224 }
00225
00226
00227
00228 if (ainvnm != 0.f) {
00229 *rcond = 1.f / ainvnm / *anorm;
00230 }
00231
00232 L20:
00233
00234 return 0;
00235
00236
00237
00238 }