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