add numerical recipes library
This commit is contained in:
24
lib/nr/k_and_r/recipes/trapzd.c
Normal file
24
lib/nr/k_and_r/recipes/trapzd.c
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
#define FUNC(x) ((*func)(x))
|
||||
|
||||
float trapzd(func,a,b,n)
|
||||
float (*func)(),a,b;
|
||||
int n;
|
||||
{
|
||||
float x,tnm,sum,del;
|
||||
static float s;
|
||||
int it,j;
|
||||
|
||||
if (n == 1) {
|
||||
return (s=0.5*(b-a)*(FUNC(a)+FUNC(b)));
|
||||
} else {
|
||||
for (it=1,j=1;j<n-1;j++) it <<= 1;
|
||||
tnm=it;
|
||||
del=(b-a)/tnm;
|
||||
x=a+0.5*del;
|
||||
for (sum=0.0,j=1;j<=it;j++,x+=del) sum += FUNC(x);
|
||||
s=0.5*(s+(b-a)*sum/tnm);
|
||||
return s;
|
||||
}
|
||||
}
|
||||
#undef FUNC
|
||||
Reference in New Issue
Block a user