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 complex c_b1 = {1.f,0.f};
00019 static integer c__1 = 1;
00020
00021 int ctptri_(char *uplo, char *diag, integer *n, complex *ap,
00022 integer *info)
00023 {
00024
00025 integer i__1, i__2;
00026 complex q__1;
00027
00028
00029 void c_div(complex *, complex *, complex *);
00030
00031
00032 integer j, jc, jj;
00033 complex ajj;
00034 extern int cscal_(integer *, complex *, complex *,
00035 integer *);
00036 extern logical lsame_(char *, char *);
00037 extern int ctpmv_(char *, char *, char *, integer *,
00038 complex *, complex *, integer *);
00039 logical upper;
00040 extern int xerbla_(char *, integer *);
00041 integer jclast;
00042 logical nounit;
00043
00044
00045
00046
00047
00048
00049
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 --ap;
00122
00123
00124 *info = 0;
00125 upper = lsame_(uplo, "U");
00126 nounit = lsame_(diag, "N");
00127 if (! upper && ! lsame_(uplo, "L")) {
00128 *info = -1;
00129 } else if (! nounit && ! lsame_(diag, "U")) {
00130 *info = -2;
00131 } else if (*n < 0) {
00132 *info = -3;
00133 }
00134 if (*info != 0) {
00135 i__1 = -(*info);
00136 xerbla_("CTPTRI", &i__1);
00137 return 0;
00138 }
00139
00140
00141
00142 if (nounit) {
00143 if (upper) {
00144 jj = 0;
00145 i__1 = *n;
00146 for (*info = 1; *info <= i__1; ++(*info)) {
00147 jj += *info;
00148 i__2 = jj;
00149 if (ap[i__2].r == 0.f && ap[i__2].i == 0.f) {
00150 return 0;
00151 }
00152
00153 }
00154 } else {
00155 jj = 1;
00156 i__1 = *n;
00157 for (*info = 1; *info <= i__1; ++(*info)) {
00158 i__2 = jj;
00159 if (ap[i__2].r == 0.f && ap[i__2].i == 0.f) {
00160 return 0;
00161 }
00162 jj = jj + *n - *info + 1;
00163
00164 }
00165 }
00166 *info = 0;
00167 }
00168
00169 if (upper) {
00170
00171
00172
00173 jc = 1;
00174 i__1 = *n;
00175 for (j = 1; j <= i__1; ++j) {
00176 if (nounit) {
00177 i__2 = jc + j - 1;
00178 c_div(&q__1, &c_b1, &ap[jc + j - 1]);
00179 ap[i__2].r = q__1.r, ap[i__2].i = q__1.i;
00180 i__2 = jc + j - 1;
00181 q__1.r = -ap[i__2].r, q__1.i = -ap[i__2].i;
00182 ajj.r = q__1.r, ajj.i = q__1.i;
00183 } else {
00184 q__1.r = -1.f, q__1.i = -0.f;
00185 ajj.r = q__1.r, ajj.i = q__1.i;
00186 }
00187
00188
00189
00190 i__2 = j - 1;
00191 ctpmv_("Upper", "No transpose", diag, &i__2, &ap[1], &ap[jc], &
00192 c__1);
00193 i__2 = j - 1;
00194 cscal_(&i__2, &ajj, &ap[jc], &c__1);
00195 jc += j;
00196
00197 }
00198
00199 } else {
00200
00201
00202
00203 jc = *n * (*n + 1) / 2;
00204 for (j = *n; j >= 1; --j) {
00205 if (nounit) {
00206 i__1 = jc;
00207 c_div(&q__1, &c_b1, &ap[jc]);
00208 ap[i__1].r = q__1.r, ap[i__1].i = q__1.i;
00209 i__1 = jc;
00210 q__1.r = -ap[i__1].r, q__1.i = -ap[i__1].i;
00211 ajj.r = q__1.r, ajj.i = q__1.i;
00212 } else {
00213 q__1.r = -1.f, q__1.i = -0.f;
00214 ajj.r = q__1.r, ajj.i = q__1.i;
00215 }
00216 if (j < *n) {
00217
00218
00219
00220 i__1 = *n - j;
00221 ctpmv_("Lower", "No transpose", diag, &i__1, &ap[jclast], &ap[
00222 jc + 1], &c__1);
00223 i__1 = *n - j;
00224 cscal_(&i__1, &ajj, &ap[jc + 1], &c__1);
00225 }
00226 jclast = jc;
00227 jc = jc - *n + j - 2;
00228
00229 }
00230 }
00231
00232 return 0;
00233
00234
00235
00236 }