Hi there,
I am trying to calculate the volume of a stockpile using 3d points gathered.
First I created three matrices. X, Y and Z
Here's the simple code used
tri = delaunay(X,Y,Z);
h = trisurf(tri, X, Y, Z);
Now I'm stuck on calculating volume. Could you kindly assist.
Thanks

 Risposta accettata

Bruno Luong
Bruno Luong il 9 Nov 2020
You'll get the volume of the convex hull by
[~,V] = convhull(X,Y,Z)

3 Commenti

Julius Mwale
Julius Mwale il 10 Nov 2020
Thanks Bruno. How do I get volume by concave hull?
Bruno Luong
Bruno Luong il 10 Nov 2020
A volume is defined by (thetrahedron) connectivity, in addition to a list of scattered points. In your case you just gives the list of points as input, so the volume is not defined. The only one that is defined is by default the convex hull.
Julius Mwale
Julius Mwale il 10 Nov 2020
Noted Thanks

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by