Learn R Programming

HuraultMisc (version 1.1.1)

approx_equal: Approximate equal

Description

Compute whether x and y are approximately equal given a tolerance level

Usage

approx_equal(x, y, tol = .Machine$double.eps^0.5)

x %~% y

Arguments

x

Numeric scalar.

y

Numeric scalar.

tol

Tolerance.

Value

Boolean

Examples

Run this code
# NOT RUN {
approx_equal(1, 1)
1 %~% (1 + 1e-16)
1 %~% 1.01
# }

Run the code above in your browser using DataLab