Conditional Groups
Overview
Conditional blocks are used to check conditional operations with a given inputs. These blocks returns 1 when the condition is true and 0 when false.
Equal To
Not Equal To
Less than
Greater than
Less than or Equal to
Greater than or Equal to
Equal To
![]()
This block is used to check whether given inputs are equal.
Inputs and Outputs Name
Description
Supported data type
In1 – Input 1
Input 1
In2 – Input 2
Input 2
Out – Output
1 when In1 & In 2 are equal and 0 if not.
Not Equal To
![]()
This block is used to check whether given inputs are not equal.
Inputs and Outputs Name
Description
Supported data type
In1 – Input 1
Input 1
In2 – Input 2
Input 2
Out – Output
1 when In1 & In 2 are not equal and 0 if equal.
Less Than
![]()
This block is used to check whether given input1 is less than input 2.
Inputs and Outputs Name
Description
Supported data type
In1 – Input 1
Input 1
In2 – Input 2
Input 2
Out – Output
1 when In1 is less than In2 and 0 if not.
Greater Than
![]()
This block is used to check whether given input1 is greater than input 2.
Inputs and Outputs Name
Description
Supported data type
In1 – Input 1
Input 1
In2 – Input 2
Input 2
Out – Output
1 when In1 is greater than In2 and 0 if not.
Less Than or Equal
![]()
This block is used to check whether given input1 is less than or equal to input 2.
Inputs and Outputs Name
Description
Supported data type
In1 – Input 1
Input 1
In2 – Input 2
Input 2
Out – Output
1 when In1 is less than or equal to In2 and 0 if not.
Greater Than or Equal
![]()
This block is used to check whether given input1 is greater than or equal to input 2.
Inputs and Outputs Name
Description
Supported data type
In1 – Input 1
Input 1
In2 – Input 2
Input 2
Out – Output
1 when In1 is greater than or equal to In2 and 0 if not.