Learn R Programming

SimTimeVar (version 1.0.0)

closest: Return closest value

Description

An internal function not intended for the user. Given a number x and vector of permitted values, returns the closest permitted value to x (in absolute value).

Usage

closest(x, candidates)

Arguments

x

The number to be compared to the permitted values.

candidates

A vector of permitted values.

Examples

Run this code
# NOT RUN {
closest( x = 5, candidates = c(-3, 8, 25) )
# }

Run the code above in your browser using DataLab