search for: basehul

Displaying 1 result from an estimated 1 matches for "basehul".

Did you mean: basehull
2009 Dec 04
1
multidimensional point.in.polygon??
...thread in which baptiste auguie said "one general way to do this would be to compute the convex hull (?chull) of the augmented set of points and test if the point belongs to it"; an approach I'd considered generalising to multiple points thus (pseudo R code)... ---------------- baseHull <- convhulln(baseSet) augHull <- convhulln(augSet) while (augHull != baseHull) { augSet <- augSet [-(augHull !%in% baseHull)] augHull <- convhulln(augSet) } -------------------- ... but this has that horrible loop including a convhulln! In the (real, typical) tes...