inrange

0     0     Edited May 18, 2016

Returns true if the first expression is contained within the specified min and max (inclusive), otherwise false.

Usage

x ← inrange(expression, min, max)  


Examples

inrange(age,35,40)
inrange(q10,8,10)

The above is equilavent to writing:
(age >= 35 and age <= 40)
(q10 >= 8 and q10 <= 10)


See Also

in


Leave a Comment

Please sign in to leave a comment.