diameter.box3(spatstat)
diameter.box3()所属R语言包:spatstat
Geometrical Calculations for Three-Dimensional Box
立体方块的几何计算
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates the volume, diameter, shortest side, or eroded volume of a three-dimensional box.
计算的体积,直径,最短边,或侵蚀体积的三维方块。
用法----------Usage----------
## S3 method for class 'box3'
diameter(x)
## S3 method for class 'box3'
volume(x)
## S3 method for class 'box3'
shortside(x)
## S3 method for class 'box3'
eroded.volumes(x, r)
shortside(x)
eroded.volumes(x, r)
参数----------Arguments----------
参数:x
Three-dimensional box (object of class "box3").
三维框(对象类"box3")。
参数:r
Numeric value or vector of numeric values for which eroded volumes should be calculated.
应计算的数值的数值或向量的侵蚀卷。
Details
详细信息----------Details----------
diameter.box3 computes the diameter of the box. volume.box3 computes the volume of the box. shortside.box3 finds the shortest of the three side lengths of the box.
diameter.box3计算框中的直径。 volume.box3计算的盒子的体积。 shortside.box3发现的最短的三个边长的方块。
eroded.volumes 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计算,为每个条目r[i],通过除去的厚度的板坯得到的小方块的体积r[i]的方块的每个面。这种较小的框是在于至少r[i]单位远离边界的方块的点组成的子集。
值----------Value----------
For diameter.box3, shortside.box3 and volume.box3, a single numeric value. For eroded.volumes, a numeric vector of the same length as r.
对于diameter.box3,shortside.box3和volume.box3,一个单一的数值。对于eroded.volumes,一个数值向量作为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----------
as.box3
as.box3
实例----------Examples----------
X <- box3(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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|