?? qromo.c
字號:
#include <math.h>#define EPS 1.0e-6#define JMAX 14#define JMAXP (JMAX+1)#define K 5float qromo(float (*func)(float), float a, float b, float (*choose)(float(*)(float), float, float, int)){ void polint(float xa[], float ya[], int n, float x, float *y, float *dy); void nrerror(char error_text[]); int j; float ss,dss,h[JMAXP+1],s[JMAXP]; h[1]=1.0; for (j=1;j<=JMAX;j++) { s[j]=(*choose)(func,a,b,j); if (j >= K) { polint(&h[j-K],&s[j-K],K,0.0,&ss,&dss); if (fabs(dss) <= EPS*fabs(ss)) return ss; } h[j+1]=h[j]/9.0; } nrerror("Too many steps in routing qromo"); return 0.0;}#undef EPS#undef JMAX#undef JMAXP#undef K
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -