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 scnrm2_(integer *n, complex *x, integer *incx)
00017 {
00018
00019 integer i__1, i__2, i__3;
00020 real ret_val, r__1;
00021
00022
00023 double r_imag(complex *), sqrt(doublereal);
00024
00025
00026 integer ix;
00027 real ssq, temp, norm, scale;
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056 --x;
00057
00058
00059 if (*n < 1 || *incx < 1) {
00060 norm = 0.f;
00061 } else {
00062 scale = 0.f;
00063 ssq = 1.f;
00064
00065
00066
00067
00068 i__1 = (*n - 1) * *incx + 1;
00069 i__2 = *incx;
00070 for (ix = 1; i__2 < 0 ? ix >= i__1 : ix <= i__1; ix += i__2) {
00071 i__3 = ix;
00072 if (x[i__3].r != 0.f) {
00073 i__3 = ix;
00074 temp = (r__1 = x[i__3].r, dabs(r__1));
00075 if (scale < temp) {
00076
00077 r__1 = scale / temp;
00078 ssq = ssq * (r__1 * r__1) + 1.f;
00079 scale = temp;
00080 } else {
00081
00082 r__1 = temp / scale;
00083 ssq += r__1 * r__1;
00084 }
00085 }
00086 if (r_imag(&x[ix]) != 0.f) {
00087 temp = (r__1 = r_imag(&x[ix]), dabs(r__1));
00088 if (scale < temp) {
00089
00090 r__1 = scale / temp;
00091 ssq = ssq * (r__1 * r__1) + 1.f;
00092 scale = temp;
00093 } else {
00094
00095 r__1 = temp / scale;
00096 ssq += r__1 * r__1;
00097 }
00098 }
00099
00100 }
00101 norm = scale * sqrt(ssq);
00102 }
00103
00104 ret_val = norm;
00105 return ret_val;
00106
00107
00108
00109 }