Logical Multi Compare

Multi Logical comparer. Determines if a value is in a particular range.

in

Input Data flow(s).

value

Values which the input has to be compared.

< val 0

Sends 1 if (in < value0), 0 otherwise.

>= val 0 & < val 1

Sends 1 if (in >= value0) AND (in < value1), 0 otherwise.

>= val 1 & < val 2

Sends 1 if (in >= value1) AND (in < value2), 0 otherwise.

>= val N-1 & < val N

Sends 1 if (in >= value N-1) AND (in < value N), 0 otherwise.

between index

Index of the current active '<','>' comparer.

  • 0 : (in < val0)
  • 1 : (in >= val0 & < val1)
  • 2 : (in >= val1 & < val2)
  • etc.

= val0

Sends 1 if (in = value0), 0 otherwise.

= val1

Sends 1 if (in = value1), 0 otherwise.

= val2

Sends 1 if (in = value2), 0 otherwise.

= valN

Sends 1 if (in = valueN), 0 otherwise.

equal index

Index of the current active '=' comparer.

  • 0 : (in = val0)
  • 1 : (in = val1)
  • 2 : (in = val2)
  • etc.

See also

version 5.2.221206

Edit All Pages