How to find area under curve
99 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
jjxc
el 8 de Oct. de 2021
Comentada: jjxc
el 8 de Oct. de 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.
0 comentarios
Respuesta aceptada
the cyclist
el 8 de Oct. de 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 comentarios
the cyclist
el 8 de Oct. de 2021
% Load data
data = readtable('discharge 30mA.txt');
% 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)
Más respuestas (0)
Ver también
Categorías
Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!