How to calculate area of space in Matalb

2 次查看(过去 30 天)
Dear members, I want to calculate area of space created by 4 lines as figure. Could you help me to do that ? Thank you
  4 个评论
Image Analyst
Image Analyst 2018-10-10
Is line #1 the blue curve, or the black top of the axes box?

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2018-10-11
Try stacking the numerical row vectors of the curves vertically using a semicolon then use min() to get the lower-most curve:
bottomCurve = min([curve1; curve2; curve3; curve4; curve5; curve6], 1);
Then sum from the left index to the right index, whatever they are.
areaUnderCurve = sum(bottomCurve(index1 : index2))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by