closest.pos: Positions of elements which are closest to some reference elements.
Description
For two vectors X and Y a vector of indices
I is returned, such that length(Y) and
length(I) coincide and X[I[j]] is an element
of X which has minimal distance to Y[j], for
all j=1,...,length(Y). In case that there are
multiple elements with minimal distance, the smallest index
(the index of the first element with minimal distance) is
returned.
Usage
closest.pos(X, Y)
Arguments
X
Vector of elements among which to find the
closest one for each element in Y.
Y
Vector of elements for which to find the
clostest element in X.
Value
Returns a vector of same length as X, with indices
indicating which element in Y is closest.