The window algorithm calculates if the input values are between a set of two limits.
This algorithm is often used with two inputs, but can take as many as you like. It always compares the highest value with the lowest one.
| Parameter | Meaning |
|---|---|
| min | The lower threshold value |
| max | The upper threshold value |
| inside | If true or 1, the value should be within the max and min. If this value is false or 0, it's expected to be ouside the window. |