Area under a curve using trapz method
2 views (last 30 days)
Show older comments
Hello, hope everyone is well. I have combined two graphs together to get a side by side comparison of them and now I am after trying to get the area under the curve using the trapz method for both data sets.

Since my data has positive and negative values, I have trying to use this code to develop a answer but I am unsure if it is correct or not:
Ak = trapz(f2c(10:50)) - trapz([50 90],[f2c(50) f2c(90)]);
Au = trapz(f2u(10:50)) - trapz([50 90],[f2u(50) f2u(90)]);
or is this code more applicable?
Ak = trapz(f2c(10:35)) + trapz(f2c(35:70));
Au = trapz(f2u(10:35)) + trapz(f2u(35:70));
Ak being the uncalibrated set and Au being the uncalibrated set. I would highly appreciate any comments or guidance please. & thank you in advance.
5 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!