LOFI Blocks – Numbers

Arithmetic operations

LOFI_Blocks_Numbers (1)

A block that performs basic arithmetic operations on two received variables. The value returned by this block is NUMBER.

Parameters:

  • The left side of the operation.
  • Arithmetic operator; the type of operation we want to do.
  • Right side of the operation.

If we use a logical variable as either side of the operation, it will be converted to TRUE – 1, FALSE – 0.

Comparison

LOFI_Blocks_Numbers (2)

A block that performs basic arithmetic comparisons on the two variables received. The value returned by this block is a logical variable (TRUTH, FALSE).

Parameters:

  • The left side of the comparison.
  • Type of comparison.
  • The right side of the comparison.

If we specify a logical variable as one of the sides of the operation, it will be converted to the number TRUTH – 1, FALSE – 0. The result of the comparison is always a logical value – TRUE or FALSE.

Numeric variable

LOFI_Blocks_Numbers (3)

A block returning a fixed numeric value.

Parameters:

  • Value.

Random number

LOFI_Blocks_Numbers (4)

A block returning a random number within the range specified by the parameters.

Parameters:

  • The lower limit of the draw.
  • The upper limit of the draw.