in.convex.hull(tripack)
in.convex.hull()所属R语言包:tripack
Determines if points are in the convex hull of a triangulation object
确定点的凸壳三角测量对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a triangulation tri.obj of n points in the plane, this subroutine returns a logical vector indicating if the points (x_i,y_i) are contained within the convex hull of tri.obj.
一个三角tri.objn点在平面上,该子程序返回一个逻辑向量点(x_i,y_i)是的凸包内包含的tri.obj。
用法----------Usage----------
参数----------Arguments----------
参数:tri.obj
object of class "tri"
对象的类"tri"
参数:x
vector of x-coordinates of points to locate
矢量的x坐标的点定位
参数:y
vector of y-coordinates of points to locate
矢量的y坐标的点定位
值----------Value----------
Logical vector.
逻辑向量。
(作者)----------Author(s)----------
A. Gebhardt
参考文献----------References----------
R. J. Renka (1996). Algorithm 751: TRIPACK: a constrained two-dimensional Delaunay triangulation package. ACM Transactions on Mathematical Software. 22, 1-8.
参见----------See Also----------
tri, print.tri, plot.tri, summary.tri, triangles, add.constraint, convex.hull.
tri,print.tri,plot.tri,summary.tri,triangles,add.constraint,convex.hull。
实例----------Examples----------
# example from TRIPACK:[例如从TRIPACK:]
data(tritest)
tr<-tri.mesh(tritest$x,tritest$y)
in.convex.hull(tr,0.5,0.5)
in.convex.hull(tr,c(0.5,-1,1),c(0.5,1,1))
# use a part of the quakes data set:[使用的地震数据集的一部分:]
data(quakes)
quakes.part<-quakes[(quakes[,1]<=-10.78 & quakes[,1]>=-19.4 &
quakes[,2]<=182.29 & quakes[,2]>=165.77),]
q.tri<-tri.mesh(quakes.part$lon, quakes.part$lat, duplicate="remove")
in.convex.hull(q.tri,quakes$lon[990:1000],quakes$lat[990:1000])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|