2016-06-07 20 views

Antwort

4

See CHull.jl, die einen Wrapper zu scipy.spatial.ConvexHull (N-dimensional)

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) 
+0

Danke Herr hat! Du hast mir viel Zeit gespart – Zack