approxeq: Do "fuzzy" equality and return a logical vector.
Description
This function compares two vectors (or arrays) of values and returns the near-equality status of corresponding elements. As with all.equal() , the intent is primarily to get around machine limits of representation of floating-point numbers. For integer comparison, just use the base == operator.
Usage
approxeq(x, y, tolerance = .Machine$double.eps^0.5, ...)
Value
A vector of the same length as the longer of x or y, consisting of TRUE and FALSE elements, depending on whether the corresponding elements of x and y are within the approximate equality precision desired.
Arguments
x,y
The two input items, typically vectors or arrays of data.
tolerance
Set the precision to which abs(x[j] - y[j]) will be compared. The default argument provided is the R-standard value for floats.