www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/PlotDelaunayTriangulation2Example.m

    %% Plot Delaunay Triangulation
% Plot the Delaunay triangulation of a large dataset.

% Copyright 2015 The MathWorks, Inc.

load seamount
tri = delaunay(x,y);
trisurf(tri,x,y,z);