Using trapz function to find area of two vectors

3 views (last 30 days)
I have one vector named 'Power' having 300 values and 'time' vector with 300 values. I want to integrate them so as to get energy(Area under Power and Time). How to use trapz for this? If trapz cannot be used then please let me know any other method.

Answers (1)

Star Strider
Star Strider on 13 Feb 2018
Try this:
Work = trapz(Time, Power)

Community Treasure Hunt

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

Start Hunting!