add numerical recipes library
This commit is contained in:
24
lib/nr/ansi/recipes/rtnewt.c
Normal file
24
lib/nr/ansi/recipes/rtnewt.c
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
#include <math.h>
|
||||
#define JMAX 20
|
||||
|
||||
float rtnewt(void (*funcd)(float, float *, float *), float x1, float x2,
|
||||
float xacc)
|
||||
{
|
||||
void nrerror(char error_text[]);
|
||||
int j;
|
||||
float df,dx,f,rtn;
|
||||
|
||||
rtn=0.5*(x1+x2);
|
||||
for (j=1;j<=JMAX;j++) {
|
||||
(*funcd)(rtn,&f,&df);
|
||||
dx=f/df;
|
||||
rtn -= dx;
|
||||
if ((x1-rtn)*(rtn-x2) < 0.0)
|
||||
nrerror("Jumped out of brackets in rtnewt");
|
||||
if (fabs(dx) < xacc) return rtn;
|
||||
}
|
||||
nrerror("Maximum number of iterations exceeded in rtnewt");
|
||||
return 0.0;
|
||||
}
|
||||
#undef JMAX
|
||||
Reference in New Issue
Block a user