1 Comment

can anyone help me the exact coding for area under a curve ?

Sign in to comment.

 Accepted Answer

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 9 Jun 2021

0 votes

This plot is from Simulink Scope as shown here. You'd need to get the data imported into MATLAB woskpace, select the necessary region of the imported data and then perform summation with trapz().

3 Comments

Let's say your imported data has two columns of data (Col 1 is X and Col 2 is Y) representing the selected curve. So then, the area under the curve will be: trapz(X, Y)
thank you for giving me an idea. it helps me a lot
Most welcome!

Sign in to comment.

More Answers (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 9 Jun 2021

0 votes

Use trapz() that gives you the numerical integration under the curve.

1 Comment

i dont really understand how to apply it. mind to share ?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!