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

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

All Data Types

In2 – Input 2

Input 2

All Data Types

Out – Output

1 when In1 & In 2 are equal and 0 if not.

Boolean

Not Equal To

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

All Data Types

In2 – Input 2

Input 2

All Data Types

Out – Output

1 when In1 & In 2 are not equal and 0 if equal.

Boolean

Less Than

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

All Data Types

In2 – Input 2

Input 2

All Data Types

Out – Output

1 when In1 is less than In2 and 0 if not.

Boolean

Greater Than

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

All Data Types

In2 – Input 2

Input 2

All Data Types

Out – Output

1 when In1 is greater than In2 and 0 if not.

Boolean

Less Than or Equal

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

All Data Types

In2 – Input 2

Input 2

All Data Types

Out – Output

1 when In1 is less than or equal to In2 and 0 if not.

Boolean

Greater Than or Equal

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

All Data Types

In2 – Input 2

Input 2

All Data Types

Out – Output

1 when In1 is greater than or equal to In2 and 0 if not.

Boolean