Standard Relational Operators
The most common numerical relational operators used in programming languages are shown below.
| Convention | equal to | not equal to | greater than | less than | greater than or equal to |
less than or equal to |
|---|---|---|---|---|---|---|
| In print | = | ≠ | > | < | ≥ | ≤ |
| Fortran | .EQ. |
.NE. |
.GT. |
.LT. |
.GE. |
.LE. |
| ALGOL 68 | = |
≠ |
> |
< |
≥ |
≤ |
/= |
>= |
<= |
||||
eq |
ne |
gt |
lt |
ge |
le |
|
| BASIC-like | = |
<> |
> |
< |
>= |
<= |
| MUMPS | = |
'= |
> |
< |
'< |
'> |
| Pascal-like | = |
<> |
> |
< |
>= |
<= |
| C-like | == |
!= |
> |
< |
>= |
<= |
| Bourne-like shells | -eq |
-ne |
-gt |
-lt |
-ge |
-le |
| Batch file | EQU |
NEQ |
GTR |
LSS |
GEQ |
LEQ |
| MATLAB | == |
~= |
> |
< |
>= |
<= |
eq(x,y) |
ne(x,y) |
gt(x,y) |
lt(x,y) |
ge(x,y) |
le(x,y) |
|
| Mathematica | == |
!= |
> |
< |
>= |
<= |
Equal |
Unequal |
Greater |
Less |
GreaterEqual |
LessEqual |
Read more about this topic: Relational Operator
Famous quotes containing the word standard:
“There is a certain standard of grace and beauty which consists in a certain relation between our nature, such as it is, weak or strong, and the thing which pleases us. Whatever is formed according to this standard pleases us, be it house, song, discourse, verse, prose, woman, birds, rivers, trees, room, dress, and so on. Whatever is not made according to this standard displeases those who have good taste.”
—Blaise Pascal (16231662)