How do I calculate the area between a curve and a horizontal line?

조회 수: 2 (최근 30일)
sergio Teran
sergio Teran 2020년 7월 16일
편집: Roger J 2020년 7월 17일
I want to calculate the area of a region below a specific y-value for a curve. This is the code I'm working with now, but it is only highlighting the area I want and not returning a specific value.
%% variables
p1d = Profile18(:,1);
p1e = Profile18(:,2);
hwMark = 4181.0164;
%% graph and x-sectional area highlighted ~2.5m above lowest channel elev.
plot(p1d,p1e);
title('Profile #1');
ylabel('Elevation (m)');
xlabel('Distance (m)');
hold on
area(p1d, min(p1e,hwMark), hwMark);

답변 (1개)

Roger J
Roger J 2020년 7월 17일
편집: Roger J 2020년 7월 17일
Capture the return value from "area()", and then find the x values for the two points where p1e crosses hwMark.
Now you can calculate the area of the shaded region, if you realize that it is equal to the area of the rectangle, minus the area under the curve p1e.
Something like the following:
a = area(p1d, min(p1e,hwMark), hwMark);
range=find(a.YData ~= hwMark)
areaUnderP1e = trapz(p1e(range(1):range(end)))
areaOfRectangle = hwMark*(range(end)-range(1))
area = areaOfRectangle-areaUnderP1e

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by