calculate the area of the surface formed by the points having coordinates [xd, yd]??

조회 수: 2 (최근 30일)
first,i used 'polybool' to determine the overlap between plusieurs ellipses
i=1;
while i<n
for j=i+1:n
t=(0:pi/20:2*pi);
x1=G(i,3)*cos(t);
y1=G(i,4)*sin(t);
x2=G(j,3)*cos(t);
y2=G(j,4)*sin(t);
[xd, yd] = polybool('intesection', x1, y1, x2, y2,'vector');
end
i=i+1;
end
now i want to calculate the area of the surface formed by the points having coordinates [xd, yd],how can i do it??

채택된 답변

Friedrich
Friedrich 2014년 5월 2일
편집: Friedrich 2014년 5월 2일
Hi,
you could do a Delauny Triangulation using the delaunay function and then calculate and sum up the area of each triangle. This should work as long your surface is one connected area. Or in the case the area of the convex hull is okay for your use polyarea.
  댓글 수: 6
amal Mbarki
amal Mbarki 2014년 5월 8일
thank you very much,it's really very helpful
José-Luis
José-Luis 2014년 5월 8일
Please accept an answer if it helped you.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Delaunay Triangulation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by