作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码使用辛普森规则计算 x*sin(x) 与 (1,2) 边界的积分。我遇到的问题是,虽然它非常接近实际值。即使迭代了 999 次,仍然没有切中要害。虽然我有一个单独的程序对同一件事使用梯形法则,但它确实在 1000 次迭代后恰好达到了目标。它应该命中的点是“1.440422”
辛普森规则是否应该如此?还是我的代码有问题?
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
double f(double x);
int main()
{
double x,result,y,z,h,s1,s2;
s1 = 0;
s2 = 0;
int i,n;
printf("\nHow many points to you want it evaluated at (odd number)? And what are the bounds? lower bound,upper bound >\n");
scanf("%d %lf,%lf",&n,&y,&z);
h = (z-y)/n;
result = 0;
if(n%2!=0)
{
for(i=0;i<n;i++)
{
if(i%2==0)
{
s1 = s1+f(y+i*h);
}
else
{
s2 = s2+f(y+i*h);
}
}
result = (h/3)*(f(y)+f(z)+4*s2+2*s1);
printf("\nThe value is %lf with %d interations\n",result,i);
}
else
{
printf("\n The number of points has to be odd, try again\n");
}
}
double f(double x)
{
return(x*sin(x));
}
最佳答案
您看到的问题可能是因为用于读取数字的格式字符串。
scanf("%d %lf,%lf",&n,&y,&z);
// ^^^ Is the , there on purpose?
尝试从格式字符串中删除 ,
并查看问题是否消失。
再强调也不为过 - 始终检查 scanf
的返回值。
if ( scanf("%d %lf %lf", &n, &y, &z) != 3 )
{
// Deal with error.
}
为确保读取的数字准确无误,添加一行将输入回显到 stdout
。
printf("n: %d, y: %lf, z: %lf\n", n, y, z);
我注意到您的代码中有几个错误:
区间 h
不对。由于您使用的是 n
点,因此有 n-1
间隔。因此,h
必须是:
h = (z-y)/(n-1);
由于您在最后一个语句中添加了 f(y)
和 f(z)
,因此循环必须是:
// Not good to use for(i=0;i<n;i++)
for(i=1;i<n-1;i++)
{
通过这些修复,我使用 n = 1001
获得了 1.440422
的输出。
关于c - 辛普森法则错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33129385/
我是一名优秀的程序员,十分优秀!