这样的功能是否存在?如果是这样,我在哪里可以找到它?
基本上,我正在寻找相当于Matlab的convhulln()函数。它将数据集(具有N维)作为其输入,并返回属于该数据空间的凸包的数据点。
答案 0 :(得分:4)
请参阅CHull.jl,其中包含scipy.spatial.ConvexHull
(N维)的包装
using CHull
p = rand(10,2)
ch = chull(p)
ch.points # original points
ch.vertices # indices to line segments forming the convex hull
show(ch)