how i can calculate the surface(2D) of delaunay triangulation ??????????????????
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Delaunay Triangulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!