4.7.1.19. Relational Operators

Relational Operators are functions which compare two values.

  • If they are true, the value is returned as 1.

  • If they are false, the value is returned as 0.

Table 4.10 Operators

Operator

Definition

<

Is less than 1.0<2.0, return the value 1 2.0<1.0, return the value 0

<=

Is less than or equal to 1.0<=2.0, return the value 1 2.0<=1.0, return the value 0

=

Is equal to A=B, return the value 1( If |A-B|<IF Tolerance) A=B, return the value 0( If |A-B|>=IF Tolerance)

>

Is greater than 1.0>2.0, return the value 0 2.0>1.0, return the value 1

>=

Is greater than or equal to 1.0>=2.0, return the value 0 2.0>=1.0, return the value 1

<>

Is not equal to A<>B, return the value 0( If |A-B|<IF Tolerance) A<>B, return the value 1( If |A-B|>=IF Tolerance)

  • IF Tolerance

    The value can be changed in the General tab of the Simulation Settings.