Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'pp3':
crossdist(X, Y, \dots, periodic=FALSE)
"pp3"
).[i,j]
entry is the distance
from the i
-th point in X
to the j
-th point in Y
. This is a method for the generic function crossdist
for three-dimensional point patterns (objects of class "pp3"
).
This function expects two
point patterns X
and Y
, and returns the matrix
whose [i,j]
entry is the distance from X[i]
to
Y[j]
.
Alternatively if periodic=TRUE
, then provided the windows
containing X
and Y
are identical and are rectangular,
then the distances will be computed in the `periodic'
sense (also known as `torus' distance): opposite edges of the
rectangle are regarded as equivalent.
This is meaningless if the window is not a rectangle.
crossdist
,
pairdist
,
nndist
,
G3est
X <- runifpoint3(20)
Y <- runifpoint3(30)
d <- crossdist(X, Y)
d <- crossdist(X, Y, periodic=TRUE)
Run the code above in your browser using DataLab