How to find an area below the curve follwed by x and y axis having two different parameters?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have attached the document having curve. x-axis is size of the particle in mm and y axis is in percentage passing.
Please help me in finding the area below the curve with x axis limit 0.425 to 53 mm and axis limit from 0 to 100%.
2 Kommentare
Mathieu NOE
am 6 Feb. 2024
as you have the data, getting the area is fairly simple using for example trapz
but I wonder what this area will represent as your current data y is a percentage and x is mm
so you want an area which unit is this product % x mm ??
Antworten (1)
Sulaymon Eshkabilov
am 10 Feb. 2024
That would be something like this:
DATA = [53 100;
26.5 88.5;
9.5 64.95;
4.75 46.85;
2.36 25.34;
0.85 23.14;
0.425 0;];
DATA = flipud(DATA);
X = DATA(:,1);
Y = DATA(:,2);
plot(X, Y, 'ro-', 'MarkerFaceColor', 'c')
xlabel('Particale Size')
ylabel('% Passing')
grid on
AREA = trapz(X, Y);
text(10, 50, ["Area = " num2str(AREA)], 'BackgroundColor', 'y')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differentiation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!