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