add numerical recipes library

This commit is contained in:
2025-09-12 18:55:25 +09:00
parent d4dff245bd
commit 2c75620ec9
1344 changed files with 63869 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
#define NRANSI
#include "nrutil.h"
void stoerm(float y[], float d2y[], int nv, float xs, float htot, int nstep,
float yout[], void (*derivs)(float, float [], float []))
{
int i,n,neqns,nn;
float h,h2,halfh,x,*ytemp;
ytemp=vector(1,nv);
h=htot/nstep;
halfh=0.5*h;
neqns=nv/2;
for (i=1;i<=neqns;i++) {
n=neqns+i;
ytemp[i]=y[i]+(ytemp[n]=h*(y[n]+halfh*d2y[i]));
}
x=xs+h;
(*derivs)(x,ytemp,yout);
h2=h*h;
for (nn=2;nn<=nstep;nn++) {
for (i=1;i<=neqns;i++)
ytemp[i] += (ytemp[(n=neqns+i)] += h2*yout[i]);
x += h;
(*derivs)(x,ytemp,yout);
}
for (i=1;i<=neqns;i++) {
n=neqns+i;
yout[n]=ytemp[n]/h+halfh*yout[i];
yout[i]=ytemp[i];
}
free_vector(ytemp,1,nv);
}
#undef NRANSI