用高斯(Gauss)求积法计算定积分
[img type="tslxml" file="media2024-03-20_WEfCpvnqqtg5qGJa/image169.png"][/img]
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Gauss(a,b,CallBack,v);
return v;
fun…
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Gauss(a,b,CallBack,v);
return v;
fun…
来源于.NET函数大全
Demo_ig_Gauss()函数教学函数。高斯求积法回调函数,计算定积分。
算法:用高斯(Gauss)求积法计算定积分:
T=abfx
其中积分下限a=2.5,积分上限b=8.4,被积函数fx=x2+sin?(x)范例(t):
[code]
return Demo_i…
算法:用高斯(Gauss)求积法计算定积分:
T=abfx
其中积分下限a=2.5,积分上限b=8.4,被积函数fx=x2+sin?(x)范例(t):
[code]
return Demo_i…
来源于.NET函数大全
高斯求积法回调函数。关于自变量x的函数式,一般作用于定积分计算的被积函数。
算法:
f(x)=x^2+sin?(x)范例(t):
算法:
f(x)=x^2+sin?(x)范例(t):
return ig_GaussCallBack(0);
//返回:0
…//返回:0
来源于.NET函数大全
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
return integral(callback,a,b,’Romberg’)…
[code]
a:=1;
b:=3;
callback:="fun1";
return integral(callback,a,b,’Romberg’)…
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Trapezoid_1(a,b,CallBack,v);
return v…
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Trapezoid_1(a,b,CallBack,v);
return v…
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Trapezoid_2(a,b,CallBack,v);
return v…
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Trapezoid_2(a,b,CallBack,v);
return v…
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Simpson_1(a,b,CallBack,v);
return v; …
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Simpson_1(a,b,CallBack,v);
return v; …
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Gauss(a,b,CallBack,v);
return v;
fun…
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Gauss(a,b,CallBack,v);
return v;
fun…
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Chebyshev(a,b,CallBack,v);
return v; …
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Chebyshev(a,b,CallBack,v);
return v; …
算法:用高斯(Gauss)求积法计算定积分:
T=abfx
其中积分下限a=2.5,积分上限b=8.4,被积函数fx=x2+sin?(x)范例(t):
[code]
return Demo_i…
T=abfx
其中积分下限a=2.5,积分上限b=8.4,被积函数fx=x2+sin?(x)范例(t):
[code]
return Demo_i…
算法:用变步长梯形求积法计算定积分:
T=abfx
其中积分下限a=0,积分上限b=1,被积函数fx=e-x2范例(t):
[code]
return Demo_ig_Gauss();
//…
T=abfx
其中积分下限a=0,积分上限b=1,被积函数fx=e-x2范例(t):
[code]
return Demo_ig_Gauss();
//…
算法:
f(x)=x^2+sin?(x)范例(t):
f(x)=x^2+sin?(x)范例(t):
return ig_GaussCallBack(0);
//返回:0
…//返回:0
范例(t):
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Romberg(a,b,CallBack,v);
return v;
f…
[code]
a:=1;
b:=3;
callback:="fun1";
ig_Romberg(a,b,CallBack,v);
return v;
f…