This function computes the distance between each pair of
line segments in X
, and returns the matrix of distances.
This is a method for the generic function pairdist
for the class "psp"
.
The distances between line segments are measured in one of two ways:
if type="Hausdorff"
, distances are computed
in the Hausdorff metric. The Hausdorff
distance between two line segments is the maximum distance
from any point on one of the segments to the nearest point on
the other segment.
if type="separation"
, distances are computed
as the minimum distance from a point on one line segment to
a point on the other line segment. For example, line segments which
cross over each other have separation zero.
The argument method
is not normally used. It is
retained only for checking the validity of the software.
If method = "interpreted"
then the distances are
computed using interpreted R code only. If method="C"
(the default) then compiled C
code is used,
which is somewhat faster.