Faster method of numerical Integration?

조회 수: 7 (최근 30일)
Jay
Jay 2012년 4월 17일
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