cf.inside

cf.inside(value0, value1, units=None)

Return an object for testing whether a variable is is inside the given range.

Parameters :
value0 : object

The lower bound of the range which a variable is to be compared with.

value1 : object

The upper bound of the range which a variable is to be compared with.

Returns :
out : Comparison

A Comparison object which will evaluate whether or not the comparison evaluates to True.

Examples

>>> c = cf.inside(5,7)
>>> c
<CF Comparison: x inside (5, 7)>
>>> c.evaluate(6)
True
>>> c.evaluate(4)
False

Previous topic

cf.gt

Next topic

cf.le

This Page