Learn R Programming

rje (version 1.9)

is.wholenumber: Determine whether number is integral or not.

Description

Checks whether a numeric value is integral, up to machine or other specified prescision.

Usage

is.wholenumber(x, tol = .Machine$double.eps^0.5)

Arguments

x

numeric vector to be tested.

tol

The desired precision.

Value

A logical vector of the same length as x, containing the results of the test.

Examples

Run this code
# NOT RUN {
x = c(0.5, 1, 2L, 1e-20)
is.wholenumber(x)
# }

Run the code above in your browser using DataLab