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 snrm2_(integer *n, real *x, integer *incx)
00017 {
00018
00019 integer i__1, i__2;
00020 real ret_val, r__1;
00021
00022
00023 double sqrt(doublereal);
00024
00025
00026 integer ix;
00027 real ssq, norm, scale, absxi;
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
00057 --x;
00058
00059
00060 if (*n < 1 || *incx < 1) {
00061 norm = 0.f;
00062 } else if (*n == 1) {
00063 norm = dabs(x[1]);
00064 } else {
00065 scale = 0.f;
00066 ssq = 1.f;
00067
00068
00069
00070
00071 i__1 = (*n - 1) * *incx + 1;
00072 i__2 = *incx;
00073 for (ix = 1; i__2 < 0 ? ix >= i__1 : ix <= i__1; ix += i__2) {
00074 if (x[ix] != 0.f) {
00075 absxi = (r__1 = x[ix], dabs(r__1));
00076 if (scale < absxi) {
00077
00078 r__1 = scale / absxi;
00079 ssq = ssq * (r__1 * r__1) + 1.f;
00080 scale = absxi;
00081 } else {
00082
00083 r__1 = absxi / scale;
00084 ssq += r__1 * r__1;
00085 }
00086 }
00087
00088 }
00089 norm = scale * sqrt(ssq);
00090 }
00091
00092 ret_val = norm;
00093 return ret_val;
00094
00095
00096
00097 }