Matlab之创建和编辑Delaunay三角剖分( 二 )


7在号令行窗口 , 输入号令:
dt = delaunayTriangulation(X)
按“Enter键” 。
如图7所示 。

Matlab之创建和编辑Delaunay三角剖分

文章插图

8在号令行窗口 , 输入号令:
% The triangulation datastructure is;
dt.ConnectivityList
按“Enter键” 。
如图8所示 。
Matlab之创建和编辑Delaunay三角剖分

文章插图

9在号令行窗口 , 输入号令:
% Indexing is a shorthand way to query the triangulation. The format is
% dt(i, j) where j is the j'th vertex of the i'th triangle, standard
% indexing rules apply.
% The triangulation datastructure is
dt(:,:)
按“Enter键” 。
如图9所示 。
Matlab之创建和编辑Delaunay三角剖分

文章插图

10第二个三角形是;
在号令行窗口 , 输入号令:
dt(2,:)
按“Enter键” 。
如图10所示 。
Matlab之创建和编辑Delaunay三角剖分

文章插图

11第二个三角形的第三个极点是;
在号令行窗口 , 输入号令:
dt(2,3)
按“Enter键” 。
如图11所示 。
Matlab之创建和编辑Delaunay三角剖分

文章插图

12前三个三角形;
在号令行窗口 , 输入号令:
dt(1:3,:)
按“Enter键” 。
【Matlab之创建和编辑Delaunay三角剖分】如图12所示 。
Matlab之创建和编辑Delaunay三角剖分

文章插图

原作者:Matlab教程举报
以上内容就是Matlab之创建和编辑Delaunay三角剖分的内容啦 , 希望对你有所帮助哦!

推荐阅读