How do I determine the surface area of a 2-D surface in a 3-D space?

17 次查看(过去 30 天)
I have 3 vectors "xcoord", "ycoord", and "zcoord" that represent the (x,y,z)-coordinates of a 2D surface in 3D space. I want to determine the surface area of the surface.
I tried using the "surfaceArea" method for an "AlphaShape" object, but the surface was disconnected. On changing the "Alpha" value, the 2D surface became a 3D object.
I want to compute the surface area for the connected 2D surface. How can I do this? 

采纳的回答

MathWorks Support Team
If  you want to compute the surface area of a 2-D surface in a 3-D space, the Delaunay Triangulation would be the best approach to go ahead with. You could compute the sum of the triangles formed by the Delaunay Triangulation to find the surface area of the 2-D surface.
 The following steps should help to obtain a 'delaunay' surface and to compute the surface area of the same.
 1) tri = delaunay(X,Y) creates a 2-D Delaunay triangulation. 'tri' is a matrix representing the set of triangles that make up the triangulation.
tri = delaunay(xcoord,zcoord);
P = [xcoord,ycoord,zcoord];
2) Obtain the edges in each triangle formed by the 'delaunaytriangulation'
v1 = P(tri(:,2), :) - P(tri(:,1), :);
v2 = P(tri(:,3), :) - P(tri(:,2), :);
3) Calculating the cross product of the edges in each triangle of the surface
cp = 0.5*cross(v1,v2);
4) Surface area of the entire surface is calculated as the sum of the areas of the individual triangles
surfaceArea = sum(sqrt(dot(cp, cp, 2)))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Delaunay Triangulation 的更多信息

产品


版本

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by