qhull.m

来自「code of an ADC implementation woith matl」· M 代码 · 共 16 行

M
16
字号
function [vertices, edges, normals, offsets] = qhull(points,str)% function [V E N O] = qhull(P,str): Convex hull finder based on qhull% P is an nxm list of m n-dimensional points.% V is the vertices of the hull.% E is the edges of the hull: pairs of indices into the V array.% N is the normals for the facets and O is their offsets.% Points inside the hull are characterized by x'*N + O < 0%% str is the argument string to qhull, the default is %  'qhull(mex) Qcx C0.001 A0.999'.%% See the documentation on qhull for more information.%% NOTE: In 2D, qhull() modifies those points in P that are vertices of %  merged facets.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?