Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015
00016 int dtrsv_(char *uplo, char *trans, char *diag, integer *n,
00017 doublereal *a, integer *lda, doublereal *x, integer *incx)
00018 {
00019
00020 integer a_dim1, a_offset, i__1, i__2;
00021
00022
00023 integer i__, j, ix, jx, kx, info;
00024 doublereal temp;
00025 extern logical lsame_(char *, char *);
00026 extern int xerbla_(char *, integer *);
00027 logical nounit;
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
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
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142 a_dim1 = *lda;
00143 a_offset = 1 + a_dim1;
00144 a -= a_offset;
00145 --x;
00146
00147
00148 info = 0;
00149 if (! lsame_(uplo, "U") && ! lsame_(uplo, "L")) {
00150 info = 1;
00151 } else if (! lsame_(trans, "N") && ! lsame_(trans,
00152 "T") && ! lsame_(trans, "C")) {
00153 info = 2;
00154 } else if (! lsame_(diag, "U") && ! lsame_(diag,
00155 "N")) {
00156 info = 3;
00157 } else if (*n < 0) {
00158 info = 4;
00159 } else if (*lda < max(1,*n)) {
00160 info = 6;
00161 } else if (*incx == 0) {
00162 info = 8;
00163 }
00164 if (info != 0) {
00165 xerbla_("DTRSV ", &info);
00166 return 0;
00167 }
00168
00169
00170
00171 if (*n == 0) {
00172 return 0;
00173 }
00174
00175 nounit = lsame_(diag, "N");
00176
00177
00178
00179
00180 if (*incx <= 0) {
00181 kx = 1 - (*n - 1) * *incx;
00182 } else if (*incx != 1) {
00183 kx = 1;
00184 }
00185
00186
00187
00188
00189 if (lsame_(trans, "N")) {
00190
00191
00192
00193 if (lsame_(uplo, "U")) {
00194 if (*incx == 1) {
00195 for (j = *n; j >= 1; --j) {
00196 if (x[j] != 0.) {
00197 if (nounit) {
00198 x[j] /= a[j + j * a_dim1];
00199 }
00200 temp = x[j];
00201 for (i__ = j - 1; i__ >= 1; --i__) {
00202 x[i__] -= temp * a[i__ + j * a_dim1];
00203
00204 }
00205 }
00206
00207 }
00208 } else {
00209 jx = kx + (*n - 1) * *incx;
00210 for (j = *n; j >= 1; --j) {
00211 if (x[jx] != 0.) {
00212 if (nounit) {
00213 x[jx] /= a[j + j * a_dim1];
00214 }
00215 temp = x[jx];
00216 ix = jx;
00217 for (i__ = j - 1; i__ >= 1; --i__) {
00218 ix -= *incx;
00219 x[ix] -= temp * a[i__ + j * a_dim1];
00220
00221 }
00222 }
00223 jx -= *incx;
00224
00225 }
00226 }
00227 } else {
00228 if (*incx == 1) {
00229 i__1 = *n;
00230 for (j = 1; j <= i__1; ++j) {
00231 if (x[j] != 0.) {
00232 if (nounit) {
00233 x[j] /= a[j + j * a_dim1];
00234 }
00235 temp = x[j];
00236 i__2 = *n;
00237 for (i__ = j + 1; i__ <= i__2; ++i__) {
00238 x[i__] -= temp * a[i__ + j * a_dim1];
00239
00240 }
00241 }
00242
00243 }
00244 } else {
00245 jx = kx;
00246 i__1 = *n;
00247 for (j = 1; j <= i__1; ++j) {
00248 if (x[jx] != 0.) {
00249 if (nounit) {
00250 x[jx] /= a[j + j * a_dim1];
00251 }
00252 temp = x[jx];
00253 ix = jx;
00254 i__2 = *n;
00255 for (i__ = j + 1; i__ <= i__2; ++i__) {
00256 ix += *incx;
00257 x[ix] -= temp * a[i__ + j * a_dim1];
00258
00259 }
00260 }
00261 jx += *incx;
00262
00263 }
00264 }
00265 }
00266 } else {
00267
00268
00269
00270 if (lsame_(uplo, "U")) {
00271 if (*incx == 1) {
00272 i__1 = *n;
00273 for (j = 1; j <= i__1; ++j) {
00274 temp = x[j];
00275 i__2 = j - 1;
00276 for (i__ = 1; i__ <= i__2; ++i__) {
00277 temp -= a[i__ + j * a_dim1] * x[i__];
00278
00279 }
00280 if (nounit) {
00281 temp /= a[j + j * a_dim1];
00282 }
00283 x[j] = temp;
00284
00285 }
00286 } else {
00287 jx = kx;
00288 i__1 = *n;
00289 for (j = 1; j <= i__1; ++j) {
00290 temp = x[jx];
00291 ix = kx;
00292 i__2 = j - 1;
00293 for (i__ = 1; i__ <= i__2; ++i__) {
00294 temp -= a[i__ + j * a_dim1] * x[ix];
00295 ix += *incx;
00296
00297 }
00298 if (nounit) {
00299 temp /= a[j + j * a_dim1];
00300 }
00301 x[jx] = temp;
00302 jx += *incx;
00303
00304 }
00305 }
00306 } else {
00307 if (*incx == 1) {
00308 for (j = *n; j >= 1; --j) {
00309 temp = x[j];
00310 i__1 = j + 1;
00311 for (i__ = *n; i__ >= i__1; --i__) {
00312 temp -= a[i__ + j * a_dim1] * x[i__];
00313
00314 }
00315 if (nounit) {
00316 temp /= a[j + j * a_dim1];
00317 }
00318 x[j] = temp;
00319
00320 }
00321 } else {
00322 kx += (*n - 1) * *incx;
00323 jx = kx;
00324 for (j = *n; j >= 1; --j) {
00325 temp = x[jx];
00326 ix = kx;
00327 i__1 = j + 1;
00328 for (i__ = *n; i__ >= i__1; --i__) {
00329 temp -= a[i__ + j * a_dim1] * x[ix];
00330 ix -= *incx;
00331
00332 }
00333 if (nounit) {
00334 temp /= a[j + j * a_dim1];
00335 }
00336 x[jx] = temp;
00337 jx -= *incx;
00338
00339 }
00340 }
00341 }
00342 }
00343
00344 return 0;
00345
00346
00347
00348 }