isBound | R Documentation |
This function checks if a number is 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.
isBound(num, lowerbound, upperbound)
num |
A numeric vector to be checked. |
lowerbound |
The lower bound of the range. |
upperbound |
The upper bound of the range. |
A logical vector indicating whether each element is within the specified range.
isBound(1, 0, 2)
isBound(1:10, -1, 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.