Learn R Programming

FastUtils (version 0.2.1)

bound: Bound a Number within a Range

Description

This function bounds a number within a specified range. This function is vectorized in a way such that either or both lowerbound and upperbound can be length 1 or the same length as the input vector.

Usage

bound(num, lowerbound, upperbound)

Value

A numeric vector with elements bounded within the specified range.

Arguments

num

A numeric vector to be bounded.

lowerbound

The lower bound of the range.

upperbound

The upper bound of the range.

Examples

Run this code
bound(1, 0, 2)
bound(1:10, -1, 5)

Run the code above in your browser using DataLab