Difference between cumsum and cumtrapz to find area under a curve?
조회 수: 114 (최근 30일)
이전 댓글 표시
Hello
I want to find the area under the curve plotted below. I am trying to figure out why the cumsum and sumtrapz are not giving me the same answer. I read some of the help in matlab, However i am still confussed why i cant get the same answer using both the keywords.
clc
clear all
close all
x=4.5:0.1:9;
y=-2*x + 20;
plot(x,y)
Area1=cumtrapz(x,y);
Area2=cumsum(y);
figure(1)
plot(x,Area1)
figure(2)
plot(x,Area2)
댓글 수: 0
채택된 답변
추가 답변 (1개)
John D'Errico
2017년 8월 31일
편집: Chad Greene
2019년 11월 19일
Why should they be the same? They do different things, solving different problems.
Is a sum the same thing as an integral? Of course not. At least, not in general.
cumsum computes the cumulative sum of elements in a vector or array.
cumtrapz computes the integral of a function that we assume is represented by the values in that vector (or array). It uses a cumulative trapezoidal rule, ergo cumtrapz. Thus each element of the result is the integral from zero to that point in the vector.
A cumulative sum CAN be just another approximation to an integral though. Rectangle rule is an an approximation to an integral, if you multiply the height of each rect by the width, then you compute an area. So as the rectangle rule would see it, if the width of each rectangle is 1, then cumsum would be a cumulative rectangle rule.
So, should the two give the SAME result? Even so, OF COURSE NOT!!!!!!
A rectangle rule is NOT the same approximation to an integration as a trapezoidal rule. Both are just approximation to an integral, but they are DIFFERENT approximations.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!