BASIX.match: Value Matching for sorted vectors.

View source: R/BASIX.match.R

BASIX.matchR Documentation

Value Matching for sorted vectors.

Description

The function returns a vector of the positions of (first) matches of its first argument in its second.

Usage


BASIX.match(elements,vec)

Arguments

elements

values to be matched

vec

the values to be matched against

Details

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)

Author(s)

Bastian Pfeifer

Examples


elements <- c(1,2,10)
vec      <- c(2,3,4,10,11)

BASIX.match(elements,vec)


BASIX documentation built on June 13, 2022, 5:05 p.m.