diameter.boxx(spatstat)
diameter.boxx()所属R语言包:spatstat
Geometrical Calculations for Multi-Dimensional Box
多维盒的几何计算
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates the volume, diameter, shortest side, or eroded volume of a multi-dimensional box.
计算的体积,直径,最短边,或侵蚀体积的一个多维的方块。
用法----------Usage----------
## S3 method for class 'boxx'
diameter(x)
## S3 method for class 'boxx'
volume(x)
## S3 method for class 'boxx'
shortside(x)
## S3 method for class 'boxx'
eroded.volumes(x, r)
参数----------Arguments----------
参数:x
Multi-dimensional box (object of class "boxx").
多维盒(类的对象"boxx"“)。
参数:r
Numeric value or vector of numeric values for which eroded volumes should be calculated.
应计算的数值的数值或向量的侵蚀卷。
Details
详细信息----------Details----------
diameter.boxx, volume.boxx and shortside.boxx compute the diameter, volume and shortest side length of the box.
diameter.boxx,volume.boxx和shortside.boxx计算的直径,体积和最短边长的方块。
eroded.volumes.boxx computes, for each entry r[i], the volume of the smaller box obtained by removing a slab of thickness r[i] from each face of the box. This smaller box is the subset consisting of points that lie at least r[i] units away from the boundary of the box.
eroded.volumes.boxx计算,为每个条目r[i],通过除去的厚度的板坯得到的小方块的体积r[i]的方块的每个面。这种较小的框是在于至少r[i]单位远离边界的方块的点组成的子集。
值----------Value----------
For diameter.boxx, shortside.boxx and volume.boxx, a single numeric value. For eroded.volumes.boxx, a numeric vector of the same length as r.
对于diameter.boxx,shortside.boxx和volume.boxx,一个单一的数值。对于eroded.volumes.boxx,一个数值向量作为r具有相同的长度。
(作者)----------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----------
boxx
boxx
实例----------Examples----------
X <- boxx(c(0,10),c(0,10),c(0,5))
diameter(X)
volume(X)
shortside(X)
hd <- shortside(X)/2
eroded.volumes(X, seq(0,hd, length=10))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|