Smaller

This function block is designed to compare numerical values and checks if the first input is smaller than all the subsequent inputs.

πŸ“₯ Inputs

Number The first number to be compared.

Number Additional numbers to compare against the first input.

πŸ“€ Outputs

Boolean This output returns a true or false value indicating whether the first number is smaller than all following inputs.

πŸ•ΉοΈ Controls

The function block does not have specific controls for user interaction, as it operates based on input values provided to it.

🎨 Features

Comparison Capability This block can compare one number against multiple other numbers simultaneously.

Boolean Output The output intuitively conveys whether the primary condition (being smaller) is met.

πŸ“ Usage Instructions

  1. Input Numbers: Connect the first number you wish to compare to the first input. Connect additional numbers to the following inputs.

  2. Evaluate: When executed, the block will return true if the first input is smaller than all subsequent values; otherwise, it will return false.

πŸ“Š Evaluation

Upon evaluation, the block checks the condition and provides a boolean output that indicates the result of the comparison.

πŸ’‘ Tips and Tricks

Optimizing Comparisons

To reduce processing time when comparing a large number of inputs, try to limit the number of connections to only the necessary values.

Debugging

If you consistently receive unexpected results, utilize Debug Input to examine each input value being supplied to the function block.

πŸ› οΈ Troubleshooting

Unexpected Boolean Outputs

If the output boolean value is not as expected, ensure that all inputs are properly configured and check for potential data type mismatches.

Edge Cases

Be aware of edge cases such as comparisons involving equal numbers, as this function will return false. Adjust input values accordingly if you need to account for equality.

Last updated