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