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 dznrm2_(integer *n, doublecomplex *x, integer *incx)
00017 {
00018
00019 integer i__1, i__2, i__3;
00020 doublereal ret_val, d__1;
00021
00022
00023 double d_imag(doublecomplex *), sqrt(doublereal);
00024
00025
00026 integer ix;
00027 doublereal 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 --x;
00056
00057
00058 if (*n < 1 || *incx < 1) {
00059 norm = 0.;
00060 } else {
00061 scale = 0.;
00062 ssq = 1.;
00063
00064
00065
00066
00067 i__1 = (*n - 1) * *incx + 1;
00068 i__2 = *incx;
00069 for (ix = 1; i__2 < 0 ? ix >= i__1 : ix <= i__1; ix += i__2) {
00070 i__3 = ix;
00071 if (x[i__3].r != 0.) {
00072 i__3 = ix;
00073 temp = (d__1 = x[i__3].r, abs(d__1));
00074 if (scale < temp) {
00075
00076 d__1 = scale / temp;
00077 ssq = ssq * (d__1 * d__1) + 1.;
00078 scale = temp;
00079 } else {
00080
00081 d__1 = temp / scale;
00082 ssq += d__1 * d__1;
00083 }
00084 }
00085 if (d_imag(&x[ix]) != 0.) {
00086 temp = (d__1 = d_imag(&x[ix]), abs(d__1));
00087 if (scale < temp) {
00088
00089 d__1 = scale / temp;
00090 ssq = ssq * (d__1 * d__1) + 1.;
00091 scale = temp;
00092 } else {
00093
00094 d__1 = temp / scale;
00095 ssq += d__1 * d__1;
00096 }
00097 }
00098
00099 }
00100 norm = scale * sqrt(ssq);
00101 }
00102
00103 ret_val = norm;
00104 return ret_val;
00105
00106
00107
00108 }