How to find area under curve

6 Ansichten (letzte 30 Tage)
jjxc
jjxc am 8 Okt. 2021
Kommentiert: jjxc am 8 Okt. 2021
I imported a set of data into matlab and have plotted the curve. However, I do not know how to use trapz to find the area under the curve.

Akzeptierte Antwort

the cyclist
the cyclist am 8 Okt. 2021
I did not open your text file, but assuming you got that plot using
plot(x,y)
then it should be as easy as
trapz(x,y)
  3 Kommentare
the cyclist
the cyclist am 8 Okt. 2021
% Load data
data = readtable('discharge 30mA.txt');
Warning: Column headers from the file were modified to make them valid MATLAB identifiers before creating variable names for the table. The original column headers are saved in the VariableDescriptions property.
Set 'VariableNamingRule' to 'preserve' to use the original column headers as table variable names.
% Drop the last point, which is NaN
x = data{1:end-1,1};
y = data{1:end-1,2};
% Plot the data
figure
plot(x,y)
% Calculate the area
area = trapz(x,y)
area = 813.2263
jjxc
jjxc am 8 Okt. 2021
oh okay i can understand the steps. Thank you for the help.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by