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 ctrexc_(char *compq, integer *n, complex *t, integer *
00021 ldt, complex *q, integer *ldq, integer *ifst, integer *ilst, integer *
00022 info)
00023 {
00024
00025 integer q_dim1, q_offset, t_dim1, t_offset, i__1, i__2, i__3;
00026 complex q__1;
00027
00028
00029 void r_cnjg(complex *, complex *);
00030
00031
00032 integer k, m1, m2, m3;
00033 real cs;
00034 complex t11, t22, sn, temp;
00035 extern int crot_(integer *, complex *, integer *,
00036 complex *, integer *, real *, complex *);
00037 extern logical lsame_(char *, char *);
00038 logical wantq;
00039 extern int clartg_(complex *, complex *, real *, complex
00040 *, complex *), xerbla_(char *, integer *);
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 t_dim1 = *ldt;
00116 t_offset = 1 + t_dim1;
00117 t -= t_offset;
00118 q_dim1 = *ldq;
00119 q_offset = 1 + q_dim1;
00120 q -= q_offset;
00121
00122
00123 *info = 0;
00124 wantq = lsame_(compq, "V");
00125 if (! lsame_(compq, "N") && ! wantq) {
00126 *info = -1;
00127 } else if (*n < 0) {
00128 *info = -2;
00129 } else if (*ldt < max(1,*n)) {
00130 *info = -4;
00131 } else if (*ldq < 1 || wantq && *ldq < max(1,*n)) {
00132 *info = -6;
00133 } else if (*ifst < 1 || *ifst > *n) {
00134 *info = -7;
00135 } else if (*ilst < 1 || *ilst > *n) {
00136 *info = -8;
00137 }
00138 if (*info != 0) {
00139 i__1 = -(*info);
00140 xerbla_("CTREXC", &i__1);
00141 return 0;
00142 }
00143
00144
00145
00146 if (*n == 1 || *ifst == *ilst) {
00147 return 0;
00148 }
00149
00150 if (*ifst < *ilst) {
00151
00152
00153
00154 m1 = 0;
00155 m2 = -1;
00156 m3 = 1;
00157 } else {
00158
00159
00160
00161 m1 = -1;
00162 m2 = 0;
00163 m3 = -1;
00164 }
00165
00166 i__1 = *ilst + m2;
00167 i__2 = m3;
00168 for (k = *ifst + m1; i__2 < 0 ? k >= i__1 : k <= i__1; k += i__2) {
00169
00170
00171
00172 i__3 = k + k * t_dim1;
00173 t11.r = t[i__3].r, t11.i = t[i__3].i;
00174 i__3 = k + 1 + (k + 1) * t_dim1;
00175 t22.r = t[i__3].r, t22.i = t[i__3].i;
00176
00177
00178
00179 q__1.r = t22.r - t11.r, q__1.i = t22.i - t11.i;
00180 clartg_(&t[k + (k + 1) * t_dim1], &q__1, &cs, &sn, &temp);
00181
00182
00183
00184 if (k + 2 <= *n) {
00185 i__3 = *n - k - 1;
00186 crot_(&i__3, &t[k + (k + 2) * t_dim1], ldt, &t[k + 1 + (k + 2) *
00187 t_dim1], ldt, &cs, &sn);
00188 }
00189 i__3 = k - 1;
00190 r_cnjg(&q__1, &sn);
00191 crot_(&i__3, &t[k * t_dim1 + 1], &c__1, &t[(k + 1) * t_dim1 + 1], &
00192 c__1, &cs, &q__1);
00193
00194 i__3 = k + k * t_dim1;
00195 t[i__3].r = t22.r, t[i__3].i = t22.i;
00196 i__3 = k + 1 + (k + 1) * t_dim1;
00197 t[i__3].r = t11.r, t[i__3].i = t11.i;
00198
00199 if (wantq) {
00200
00201
00202
00203 r_cnjg(&q__1, &sn);
00204 crot_(n, &q[k * q_dim1 + 1], &c__1, &q[(k + 1) * q_dim1 + 1], &
00205 c__1, &cs, &q__1);
00206 }
00207
00208
00209 }
00210
00211 return 0;
00212
00213
00214
00215 }