delaunay(spatstat)
delaunay()所属R语言包:spatstat
Delaunay Triangulation of Point Pattern
Delaunay三角网的点格局
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the Delaunay triangulation of a spatial point pattern.
计算Delaunay三角网的空间点格局。
用法----------Usage----------
delaunay(X)
参数----------Arguments----------
参数:X
Spatial point pattern (object of class "ppp").
空间点模式(类的对象"ppp")。
Details
详细信息----------Details----------
The Delaunay triangulation of a spatial point pattern X is defined as follows. First the Dirichlet/Voronoi tessellation of X computed; see dirichlet. Then two points of X are defined to be Delaunay neighbours if their Dirichlet/Voronoi tiles share a common boundary. Every pair of Delaunay neighbours is joined by a straight line. The result is a tessellation, consisting of disjoint triangles. The union of these triangles is the convex hull of X.
Delaunay三角网的空间点格局X的定义如下。首先,狄利克雷/X计算机;的Voronoi Tessellation(曲面细分)看到dirichlet。然后,两个点X被定义为德劳内的邻居,如果他们的Dirichlet / Voronoi图的瓷砖都有一个共同的边界。每对德劳内邻居是加入了一条直线。其结果是一个镶嵌,组成的不相交的三角形。这些三角形是工会的凸包X。
值----------Value----------
A tessellation (object of class "tess"). The window of the tessellation is the convex hull of X, not the original window of X.
镶嵌(类的对象"tess")。窗口的Tessellation(曲面细分)的凸包X,而不是原来的窗口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, dirichlet, convexhull.xy, ppp
tess,dirichlet,convexhull.xy,ppp
实例----------Examples----------
X <- runifpoint(42)
plot(delaunay(X))
plot(X, add=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|