approx_equals: checks if two numbers are close to equal

Usage Arguments Examples

View source: R/approx_equals.R

Usage

1

Arguments

a
b

Examples

1
2
3
4
5
6
7
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (a, b) 
ifelse(abs(log(a/b)) < 0.001, TRUE, FALSE)

James-Thorson/movement_tools documentation built on May 7, 2019, 10:19 a.m.