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