Learn R Programming

BASIX (version 1.2)

BASIX.match: 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)

Examples

Run this code
# NOT RUN {
elements <- c(1,2,10)
vec      <- c(2,3,4,10,11)

BASIX.match(elements,vec)

# }

Run the code above in your browser using DataLab