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
00017
00018 static integer c__1 = 1;
00019
00020 int dtptri_(char *uplo, char *diag, integer *n, doublereal *
00021 ap, integer *info)
00022 {
00023
00024 integer i__1, i__2;
00025
00026
00027 integer j, jc, jj;
00028 doublereal ajj;
00029 extern int dscal_(integer *, doublereal *, doublereal *,
00030 integer *);
00031 extern logical lsame_(char *, char *);
00032 extern int dtpmv_(char *, char *, char *, integer *,
00033 doublereal *, doublereal *, integer *);
00034 logical upper;
00035 extern int xerbla_(char *, integer *);
00036 integer jclast;
00037 logical nounit;
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 --ap;
00117
00118
00119 *info = 0;
00120 upper = lsame_(uplo, "U");
00121 nounit = lsame_(diag, "N");
00122 if (! upper && ! lsame_(uplo, "L")) {
00123 *info = -1;
00124 } else if (! nounit && ! lsame_(diag, "U")) {
00125 *info = -2;
00126 } else if (*n < 0) {
00127 *info = -3;
00128 }
00129 if (*info != 0) {
00130 i__1 = -(*info);
00131 xerbla_("DTPTRI", &i__1);
00132 return 0;
00133 }
00134
00135
00136
00137 if (nounit) {
00138 if (upper) {
00139 jj = 0;
00140 i__1 = *n;
00141 for (*info = 1; *info <= i__1; ++(*info)) {
00142 jj += *info;
00143 if (ap[jj] == 0.) {
00144 return 0;
00145 }
00146
00147 }
00148 } else {
00149 jj = 1;
00150 i__1 = *n;
00151 for (*info = 1; *info <= i__1; ++(*info)) {
00152 if (ap[jj] == 0.) {
00153 return 0;
00154 }
00155 jj = jj + *n - *info + 1;
00156
00157 }
00158 }
00159 *info = 0;
00160 }
00161
00162 if (upper) {
00163
00164
00165
00166 jc = 1;
00167 i__1 = *n;
00168 for (j = 1; j <= i__1; ++j) {
00169 if (nounit) {
00170 ap[jc + j - 1] = 1. / ap[jc + j - 1];
00171 ajj = -ap[jc + j - 1];
00172 } else {
00173 ajj = -1.;
00174 }
00175
00176
00177
00178 i__2 = j - 1;
00179 dtpmv_("Upper", "No transpose", diag, &i__2, &ap[1], &ap[jc], &
00180 c__1);
00181 i__2 = j - 1;
00182 dscal_(&i__2, &ajj, &ap[jc], &c__1);
00183 jc += j;
00184
00185 }
00186
00187 } else {
00188
00189
00190
00191 jc = *n * (*n + 1) / 2;
00192 for (j = *n; j >= 1; --j) {
00193 if (nounit) {
00194 ap[jc] = 1. / ap[jc];
00195 ajj = -ap[jc];
00196 } else {
00197 ajj = -1.;
00198 }
00199 if (j < *n) {
00200
00201
00202
00203 i__1 = *n - j;
00204 dtpmv_("Lower", "No transpose", diag, &i__1, &ap[jclast], &ap[
00205 jc + 1], &c__1);
00206 i__1 = *n - j;
00207 dscal_(&i__1, &ajj, &ap[jc + 1], &c__1);
00208 }
00209 jclast = jc;
00210 jc = jc - *n + j - 2;
00211
00212 }
00213 }
00214
00215 return 0;
00216
00217
00218
00219 }