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