Borrar filtros
Borrar filtros

Numerical Integration of Equally Spaced Data

3 visualizaciones (últimos 30 días)
David Koenig
David Koenig el 20 de Mayo de 2013
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.

Respuesta aceptada

Youssef  Khmou
Youssef Khmou el 20 de Mayo de 2013
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 comentarios
David Koenig
David Koenig el 20 de Mayo de 2013
Thanks, Youssef. I will give your idea a try.
Youssef  Khmou
Youssef Khmou el 20 de Mayo de 2013
Editada: Youssef Khmou el 20 de Mayo de 2013
ok, do not accept the answer until it works to get other suggestions from other contributors

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by