Main Content

Relational Operations

Value comparisons

Relational operators compare the elements in two arrays and return logical true or false values to indicate where the relation holds. For more information, see Array Comparison with Relational Operators.

Functions

==Determine equality
>=Determine greater than or equal to
>Determine greater than
<=Determine less than or equal to
<Determine less than
~=Determine inequality
isequalDetermine array equality
isequalnDetermine array equality, treating NaN values as equal

Topics

  • Array Comparison with Relational Operators

    Use relational operators like “less than”, “greater than”, and “not equal to” to compare arrays. The result is a logical array indicating the locations where the relation is true.

  • Operator Precedence

    Precedence rules determine the order in which MATLAB® evaluates an expression.