• 大小: 8KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: Matlab
  • 标签: 凸包  分类  matlab  

资源简介

凸包算法 二元分类问题 matlab程序 很好用

资源截图

代码片段和文件信息

function chull=ConvHull2D(xy)
%  chull=ConvHull2D(xy) returns indices into the x and y vectors of the points on
%     the convex hull. Colinear points wont be part of the convex hull.

%        Input:
%                x[nx1] : vectors of x points
%                y[nx1] : vectors of y points
%        Output:
%                chull[mx1]: index of convex hull points
%
%     Example:
%       N=20;
%       x=rand(N1);
%       y=rand(N1);
%       chull=ConvHull2D(xy);
%       figure(1)
%       hold on
%       plot(xy‘k.‘)
%       plot(x(chull)y(chull));
%       title(‘Convex Hull‘)
%
%
%     See also convhulln delaunay voronoi
%              polyarea qhull.
%
%
%Author: Luigi Giaccari
%Last Update: 4/12/2008
%Creation: 27/11/2008

%How does it work?

评论

共有 条评论