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 cswap_(integer *n, complex *cx, integer *incx, complex *
00017 cy, integer *incy)
00018 {
00019
00020 integer i__1, i__2, i__3;
00021
00022
00023 integer i__, ix, iy;
00024 complex ctemp;
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 --cy;
00043 --cx;
00044
00045
00046 if (*n <= 0) {
00047 return 0;
00048 }
00049 if (*incx == 1 && *incy == 1) {
00050 goto L20;
00051 }
00052
00053
00054
00055
00056 ix = 1;
00057 iy = 1;
00058 if (*incx < 0) {
00059 ix = (-(*n) + 1) * *incx + 1;
00060 }
00061 if (*incy < 0) {
00062 iy = (-(*n) + 1) * *incy + 1;
00063 }
00064 i__1 = *n;
00065 for (i__ = 1; i__ <= i__1; ++i__) {
00066 i__2 = ix;
00067 ctemp.r = cx[i__2].r, ctemp.i = cx[i__2].i;
00068 i__2 = ix;
00069 i__3 = iy;
00070 cx[i__2].r = cy[i__3].r, cx[i__2].i = cy[i__3].i;
00071 i__2 = iy;
00072 cy[i__2].r = ctemp.r, cy[i__2].i = ctemp.i;
00073 ix += *incx;
00074 iy += *incy;
00075
00076 }
00077 return 0;
00078
00079
00080 L20:
00081 i__1 = *n;
00082 for (i__ = 1; i__ <= i__1; ++i__) {
00083 i__2 = i__;
00084 ctemp.r = cx[i__2].r, ctemp.i = cx[i__2].i;
00085 i__2 = i__;
00086 i__3 = i__;
00087 cx[i__2].r = cy[i__3].r, cx[i__2].i = cy[i__3].i;
00088 i__2 = i__;
00089 cy[i__2].r = ctemp.r, cy[i__2].i = ctemp.i;
00090
00091 }
00092 return 0;
00093 }