R/approxeq.R

Defines functions approxeq

Documented in approxeq

approxeq <- function(x, y, tolerance = .Machine$double.eps ^ 0.5, ...) {
# unlike all.equal, this returns a vector of T/F and ignores object properties
#input validation 
if (length(x) != length(y)) warning('x,y lengths differ. Will recycle.')
#don't care about dimensions so long as you're smart about inputs
checkit <- abs(x-y) < tolerance
return(invisible(checkit))
}

Try the cgwtools package in your browser

Any scripts or data that you put into this service are public.

cgwtools documentation built on Oct. 21, 2023, 1:06 a.m.