How to calculate area of space in Matalb
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Image Analyst
le 11 Oct 2018
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))
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Curve Fitting Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!