BASIX.match {BASIX} | R Documentation |
The function returns a vector of the positions of (first) matches of its first argument in its second.
BASIX.match(elements,vec)
elements |
values to be matched |
vec |
the values to be matched against |
BASIX.match
stops at the first match and continues with the next
element of elements
starting from the match position in vec
.
The native R solution would be:
match(elements,vec)
Bastian Pfeifer
elements <- c(1,2,10) vec <- c(2,3,4,10,11) BASIX.match(elements,vec)