spatstat (version 1.56-0)

test.crossing.psp: Check Whether Segments Cross

Description

Determine whether there is a crossing (intersection) between each pair of line segments.

Usage

test.crossing.psp(A, B)
test.selfcrossing.psp(A)

Arguments

A,B

Line segment patterns (objects of class "psp").

Value

A logical matrix.

Details

These functions decide whether the given line segments intersect each other.

If A and B are two spatial patterns of line segments, test.crossing.psp(A, B) returns a logical matrix in which the entry on row i, column j is equal to TRUE if segment A[i] has an intersection with segment B[j].

If A is a pattern of line segments, test.selfcross.psp(A) returns a symmetric logical matrix in which the entry on row i, column j is equal to TRUE if segment A[i] has an intersection with segment A[j].

See Also

psp

Examples

Run this code
# NOT RUN {
  B <- edges(letterR)
  A <- rpoisline(5, Frame(B))
  MA <- test.selfcrossing.psp(A)
  MAB <- test.crossing.psp(A, B)
# }

Run the code above in your browser using DataLab