Limit numbers within a certain range
Name | Type | Opt | Description |
---|---|---|---|
minimum/maximum | int or float | opt | The first number specifies a minimum limit and the second number specifies a maximum limit, within which all numbers will be constrained before being sent out the outlet. If only one argument is present, it is used as both the minimum and maximum limit. If no argument is present, the minimum and maximum limit is | .
int | input [int] |
In left inlet: The number is sent out the outlet, constrained within the minimum and maximum limits specified by the arguments, inlets, or by a | message. If the number received is a , it will be sent out as a .
float | input [float] |
In left inlet: The number is sent out the outlet, constrained within the minimum and maximum limits specified by the arguments, inlets, or by a | message. If the number received is a , it will be sent out as a .
list | input [list] |
Each number in the list is constrained within the minimum and maximum limits, and the constrained numbers are sent out as a list. |
set | minimum/maximum [list] |
The word | , followed by two numbers, resets the minimum and maximum limits within which all numbers will be constrained before being sent out the outlet.
Name | Description |
---|---|
maximum | Output the greatest in a list of numbers |
minimum | Output the smallest in a list of numbers |
split | Look for a range of numbers |
< | Is less than, comparison of two numbers |
<= | Is less than or equal to, comparison of two numbers |
> | Is greater than, comparison of two numbers |
>= | Is greater than or equal to, comparison of two numbers |