MATLAB の inpolygon 的なことをやる †GeometricalPredicates.jl †バージョンがいつまでも v0.x のままだけど… (@v1.6) pkg> status [fd0ad045] GeometricalPredicates v0.4.2 何らかの頂点のデータ(xv,yv)に対して GeometricalPredicates.Point2D という型に変換して更に GeometricalPredicates.Polygon という型のポリゴンを作る. using GeometricalPredicates poly = Polygon(Point.(xv,yv)...) points = Point.(xp,yp) inside = [inpolygon(poly, p) for p in points] |