Learn R Programming

BASIX (version 1.2)

BASIX.equal: Test if two vectors are equal

Description

This function checks if two vectors are equal, by comparing each cell and quits when the first mismatch occurs.

Usage

BASIX.equal(a,b)

Arguments

a

first vector

b

second vector

Details

Native R functions compare every entry of the entired vectors,

The R solution would be:

all(a==b)

The function can be applied to numeric as well as character vectors

Examples

Run this code
# NOT RUN {
a <- 1:10
b <- a
b[2] <- 9
BASIX.equal(a,b)

# }

Run the code above in your browser using DataLab