in.chull(sgeostat)
in.chull()所属R语言包:sgeostat
Convex hull test
凸包测试
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Checks if points are in the interior of a convex hull.
如果点的凸包的内部检查。
用法----------Usage----------
in.chull(x0, y0, x, y)
参数----------Arguments----------
参数:x0
coordinates of points to check
坐标点检查
参数:y0
see x0
看到x0
参数:x
coordinates defining the convex hull
坐标定义的凸包
参数:y
see x
看到x
Details
详细信息----------Details----------
Uses a simple points-in-polygon check combined with the chull function.
使用一个简单的多边形点检查与chull功能相结合。
值----------Value----------
参数:comp1
Description of "comp1"
说明COMP1“
参数:comp2
Description of "comp2"
说明COMP2“
(作者)----------Author(s)----------
Albrecht Gebhardt <agebhard@uni-klu.ac.at>
参考文献----------References----------
参见----------See Also----------
in.convex.hull, chull
in.convex.hull,chull
实例----------Examples----------
in.chull(c(0,1),c(0,1),c(0,1,0,-1),c(-1,0,1,0))
# should give: TRUE FALSE[应:TRUE FALSE]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|