calculate the area of the surface formed by the points having coordinates [xd, yd]??
Show older comments
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??
Accepted Answer
More Answers (0)
Categories
Find more on Delaunay Triangulation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!