snrm2.c
来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· C语言 代码 · 共 57 行
C
57 行
#include "f2c.h"
#include "netlib.h"
extern double sqrt(double); /* #include <math.h> */
real snrm2_(n, x, incx)
const integer *n;
const real *x;
const integer *incx;
{
/* System generated locals */
real r__1;
/* Local variables */
static real norm, scale, absxi;
static integer ix;
static real ssq;
/* SNRM2 returns the euclidean norm of a vector via the function */
/* name, so that */
/* */
/* SNRM2 := sqrt( x'*x ) */
/* */
/* -- This version written on 25-October-1982. */
/* Modified on 14-October-1993 to inline the call to SLASSQ. */
/* Sven Hammarling, Nag Ltd. */
if (*n < 1 || *incx < 1) {
norm = 0.f;
} else if (*n == 1) {
norm = abs(x[0]);
} else {
scale = 0.f;
ssq = 1.f;
/* The following loop is equivalent to this call to the LAPACK */
/* auxiliary routine: */
/* CALL SLASSQ( N, X, INCX, SCALE, SSQ ) */
for (ix = 0; ix < *n * *incx; ix += *incx) {
if (x[ix] != 0.f) {
absxi = abs(x[ix]);
if (scale < absxi) {
r__1 = scale / absxi;
ssq = ssq * r__1 * r__1 + 1.f;
scale = absxi;
} else {
r__1 = absxi / scale;
ssq += r__1 * r__1;
}
}
}
norm = scale * sqrtf(ssq);
}
return norm;
} /* snrm2_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?