Numerical Integration of Equally Spaced Data
6 次查看(过去 30 天)
显示 更早的评论
I have been using trapz to integrate a vector of equally spaced data. Is there a more accurate method available in script form that carries out the Simpson's method or perhaps the Newton-Cotes method? Thanks.
0 个评论
采纳的回答
Youssef Khmou
2013-5-20
hi David,
I think using trapz integrator with the x/t axis gives good result, in the mean wile try to interpolate your data to get better accuracy , as this example :
t=0:1/100:pi/2;
y=sin(t);
f=trapz(t,y);
t2=interp(t,4);
y2=sin(t2);
f2=trapz(t2,y2) % Df=1.0064-0.9992=0.0072
2 个评论
Youssef Khmou
2013-5-20
编辑:Youssef Khmou
2013-5-20
ok, do not accept the answer until it works to get other suggestions from other contributors
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numerical Integration and Differential Equations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!