Faster method of numerical Integration?

7 次查看(过去 30 天)
Howdy,
I'm currently running a for loop containing only the trapezoidal rule and a count variable, i.e. something like:
for n=2:length(a)
computeVel(n-1,1) = trapz(a,b);
n=n+1;
end
I'm running this for 600k iterations, and will be running it often. I need the solution at each successive upper bound in the vector 'b.' I.e., if b=[1,2,3,4] i need the integral on 1 to 2, 1 to 3, and 1 to 4.
Is there a fast(er) way to do this?

采纳的回答

Andrei Bobrov
Andrei Bobrov 2012-4-17
out = cumtrapz(a,b)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by