Area between function and polyline

2 次查看(过去 30 天)
Hi everyone I have a problem. I try to calculate the area between a linear function (red) and a polyline (blue). I hope someone can help me.

采纳的回答

Jan
Jan 2018-4-26
How are the values of the lines stored? In two vectors containing Y values to the the same X coordinates? If so:
match = (y_blue <= y_red);
Area = cumtrapz(y_red(match) - y_blue(match))
  1 个评论
An Ku
An Ku 2018-4-27
Thank very much. :) May you have an idea how I can visualize this area in a plot?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by