crossing.psp(spatstat)
crossing.psp()所属R语言包:spatstat
Crossing Points of Two Line Segment Patterns
两线段模式的交叉点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Finds any crossing points between two line segment patterns.
查找任何交叉点之间的线段模式。
用法----------Usage----------
crossing.psp(A,B)
参数----------Arguments----------
参数:A,B
Line segment patterns (objects of class "psp").
线段模式(对象类"psp")。
Details
详细信息----------Details----------
This function finds any crossing points between the line segment patterns A and B.
此功能发现任何交叉点之间的线段模式A和B。
A crossing point occurs whenever one of the line segments in A intersects one of the line segments in B, at a nonzero angle of intersection.
的交叉点时发生A的线段相交的线段B之一,在一个非零的交角。
值----------Value----------
Point pattern (object of class "ppp").
点模式(类的对象"ppp")。
(作者)----------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----------
selfcrossing.psp, psp.object, ppp.object.
selfcrossing.psp,psp.object,ppp.object。
实例----------Examples----------
a <- psp(runif(10), runif(10), runif(10), runif(10), window=owin())
b <- psp(runif(10), runif(10), runif(10), runif(10), window=owin())
plot(a, col="green", main="crossing.psp")
plot(b, add=TRUE, col="blue")
P <- crossing.psp(a,b)
plot(P, add=TRUE, col="red")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|