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

 采纳的回答

You'll get the volume of the convex hull by
[~,V] = convhull(X,Y,Z)

3 个评论

Thanks Bruno. How do I get volume by concave hull?
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.
Noted Thanks

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by