how i can calculate the surface(2D) of delaunay triangulation ??????????????????
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to calculate the area(the surface) of a zone(2D) using the delaunay triangulation or convex hull, how can i do ?plzzzzzzzz i need help net = [1:n;rand([1,n])*x;rand([1,n])*y]; net1 = net; xx=net(2,:); yy=net(3,:); dt = DelaunayTri(xx',yy'); P = [xx',yy']; K = convexHull(dt); triplot(dt,'cyan');
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Delaunay Triangulation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!