Area between function and polyline

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 日

0 投票

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 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

質問済み:

2018 年 4 月 26 日

コメント済み:

2018 年 4 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by