-1

为了用高斯公式和误差值计算积分,我在matlab中编写了这个程序:

%calculate integral with Gauss 3-point 
clc 
syms x ;
f=input('f(x)  : ');
a=input('a = : ');
b=input('b = : ');
x=.5*((b-a)*(-1*(3/5)^0.5)+(a+b));
w0f0=(5/9)*eval(f);
x=.5*((b-a)*0+(a+b));
w1f1=(8/9)*eval(f);
x=.5*((b-a)*((.6)^.5)+(a+b));
w2f2=(5/9)*eval(f);
antegral=w0f0+w1f1+w2f2;
antegral=0.5*(b-a)*antegral;
disp(antegral)

%cal Error value  = maximum of f^(6)/1570
syms x
m6=diff(f,6);
m6
m6=-1*m6;
[x,fval]=fminbnd(fun,x0,xn);
En=fval/15750;
disp (En);

此代码从命令行获取 F(x) 并计算积分。

我有两个问题:

  1. 如果您sin(x)在命令行中输入 f(x)= ,a=0 , b=pi 进行计算,可能会显示为2.97708877614822e-009. 我想成为数字格式

  2. 计算E(n)诸如a=0 , b=2 之f(x)(1+x)^3的错误必须计算0但计算2.97708877614822e-009

4

1 回答 1

1

您应该了解计算机精度。

例如,您可以检查:

http://sebsauvage.net/python/snyppets/#binary_repr

于 2012-01-27T16:54:34.927 回答