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