Area of curved surface

조회 수: 11 (최근 30일)
David
David 2015년 7월 6일
댓글: yuefeng Yin 2017년 10월 5일
Hi,
I have data points belonging to a surface in 3D. I want to calculate the surface area of it. What are my options? If possible computationally inexpensive solutions are preferred. The way I have done it so far is to fit a plane into the points, project the boundary points onto the plane and calculate the area of the resulting polygon. But I want something more precise. The X and Y data are on a regular grid, the Z data not. All three are floats.
  댓글 수: 1
yuefeng Yin
yuefeng Yin 2017년 10월 5일
Hello,
I am working on a formula to describe the curved surface of a flat material, can you give me some XYZ data, I may calculate the whole surface area?

댓글을 달려면 로그인하십시오.

채택된 답변

Harsha Medikonda
Harsha Medikonda 2015년 7월 8일

추가 답변 (1개)

Roger Stafford
Roger Stafford 2015년 7월 8일
In your grid system you should be able to approximate your three-dimensional surface area as the sum of the areas of a set of triangles. If the coordinates of a triangle are P1 = [x1,y1,z1], P2 = [x2,y2,z2], P3 = [x3,y3,z3], its area is:
1/2*norm(cross(P2-P1,P3-P1));

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by