?? qsimp.c
字號(hào):
#include <math.h>#define EPS 1.0e-6#define JMAX 20float qsimp(float (*func)(float), float a, float b){ float trapzd(float (*func)(float), float a, float b, int n); void nrerror(char error_text[]); int j; float s,st,ost,os; ost = os = -1.0e30; for (j=1;j<=JMAX;j++) { st=trapzd(func,a,b,j); s=(4.0*st-ost)/3.0; if (fabs(s-os) < EPS*fabs(os)) return s; if (s == 0.0 && os == 0.0 && j > 6) return s; os=s; ost=st; } nrerror("Too many steps in routine qsimp"); return 0.0;}#undef EPS#undef JMAX
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -