bdist.tiles(spatstat)
bdist.tiles()所属R语言包:spatstat
Distance to Boundary of Window
窗口边界的距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the shortest distances from each tile in a tessellation to the boundary of the window.
计算的最短距离,从每个平铺在镶嵌窗口边界。
用法----------Usage----------
bdist.tiles(X)
参数----------Arguments----------
参数:X
A tessellation (object of class "tess").
镶嵌(类的对象"tess")。
Details
详细信息----------Details----------
This function computes, for each tile s[[i]] in the tessellation X, the shortest distance from s[[i]] to the boundary of the window W containing the tessellation.
此函数计算,每瓦s[[i]]在Tessellation(曲面细分)X,最短距离s[[i]]窗口W包含Tessellation(曲面细分)的边界。
值----------Value----------
A numeric vector, giving the shortest distance from each tile in the tessellation to the boundary of the window. Entries of the vector correspond to the entries of tiles(X).
一个数值向量,在Tessellation(曲面细分)的最短距离每瓦的窗口边界。的向量中的条目相对应的条目tiles(X)。
(作者)----------Author(s)----------
Adrian Baddeley
<a href="mailto:Adrian.Baddeley@csiro.au">Adrian.Baddeley@csiro.au</a>
<a href="http://www.maths.uwa.edu.au/~adrian/">http://www.maths.uwa.edu.au/~adrian/</a>
and Rolf Turner
<a href="mailto:r.turner@auckland.ac.nz">r.turner@auckland.ac.nz</a>
参见----------See Also----------
tess, bdist.points, bdist.pixels
tess,bdist.points,bdist.pixels
实例----------Examples----------
P <- runifpoint(15)
X <- dirichlet(P)
plot(X, col="red")
B <- bdist.tiles(X)
# identify tiles that do not touch the boundary[确定不触及边界的瓷砖]
plot(X[B > 0], add=TRUE, col="green", lwd=3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|