首页 > 代码库 > simpson公式求定积分(模板)
simpson公式求定积分(模板)
1 #include<cstdio> 2 #include<cmath> 3 #include <algorithm> 4 using namespace std; 5 6 double r,R1;//公式需要用到的变量 7 8 // simpson公式用到的函数,就是待积分函数 9 double F(double x)10 {11 //return sqrt(r*r-x*x)*sqrt(R1*R1-x*x);12 return f(x);13 }14 15 16 // 三点simpson法。这里要求F是一个全局函数17 double simpson(double a, double b)18 {19 double c = a + (b-a)/2;20 return (F(a)+4*F(c)+F(b))*(b-a)/6;21 }22 23 // 自适应Simpson公式(递归过程)。已知整个区间[a,b]上的三点simpson值A24 double asr(double a, double b, double eps, double A)25 {26 double c = a + (b-a)/2;27 double L = simpson(a, c), R = simpson(c, b);28 if(fabs(L+R-A) <= 15*eps) return L+R+(L+R-A)/15.0;29 return asr(a, c, eps/2, L) + asr(c, b, eps/2, R);30 }31 32 // 自适应Simpson公式(主过程)33 double asr(double a, double b, double eps)34 {35 return asr(a, b, eps, simpson(a, b));36 }37 38 // 用自适应Simpson公式计算积分数值39 double getValue()40 {41 return asr(0, r, 1e-5)*8; // 第一第二个参数为积分区间,第三个参数为精度42 }43 44 int main()45 {46 while(~scanf("%lf%lf",&r,&R1))47 {48 if(r>R1)49 swap(r,R1);50 printf("%.10f\n",getValue());51 }52 return 0;53 }
simpson公式求定积分(模板)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。