The DISTANCE function computes the pairwise distances between rows of x. The distances depend on the metric specified by the method argument. The arguments are as follows:
specifies an numerical matrix that contains n points in p-dimensional space.
is an optional argument that specifies the method used to specify the distance between pairs of points. The method argument is either a numeric value, method, or a case-insensitive character value. Only the first four character values are used. The following are valid options:
specifies that the function compute the Euclidean () distance between two points. This is the default value. An equivalent alias is "Euclidean".
specifies that the function compute the Manhattan () distance between two points. An equivalent alias is "CityBlock" or "Manhattan".
specifies that the function compute the Chebyshev () distance between two points. An equivalent alias is "Chebyshev".
is a numeric value, , that specifies the -norm.
The DISTANCE function returns an symmetric matrix. The th element is the distance between the ith and jth rows of x.
If u and v are two p-dimensional points, then the following formulas are used to compute the distance between u and v:
The Euclidean distance: .
The distance: ,
The distance: .
The distance: .
The following statements illustrate the DISTANCE function:
x = {1 0, 0 1, -1 0, 0 -1}; d2 = distance(x, "L2"); print d2[format=best5.];
The ith column of d2
contains the distances between the ith row of x
and the other rows. Notice that the d2
matrix has zeros along the diagonal.
You can also compute non-Euclidean distances, as follows:
d1 = distance(x, "L1"); dInf = distance(x, "LInfinity"); print d1, dInf;
If a row contains a missing value, all distances that involve that row are assigned a missing value.