.==
|
Element-by-Element Equality |
a .== b Compares each element of a with b , resulting in a matrix of 1’s and 0’s.
|
==
|
Equality |
a == b Returns a scalar 1 (true) if all elements of a and b are equal, otherwise 0 (false).
|
=
|
Inequality |
a != b Returns a scalar 1 (true) if a and b are not equal, otherwise 0 (false).
|
.!=
|
Element-by-Element Inequality |
a .!= b Compares each element of a with b , resulting in a matrix of 1’s and 0’s.
|
.>=
|
Element-by-Element Greater or Equal |
a .>= b Compares each element of a with b , resulting in a matrix of 1’s and 0’s.
|
>=
|
Greater or Equal |
a >= b Returns 1 (true) if all elements of a are greater than or equal to those of b ,
otherwise 0 (false).
|
.<=
|
Element-by-Element Less or Equal |
a .<= b Compares each element of a with b , resulting in a matrix of 1’s and 0’s.
|
<=
|
Less or Equal |
a <= b Returns a scalar 1 (true) if all elements of a are less than or equal to those of b ,
otherwise 0 (false).
|