==

Equality comparison operator.

Syntax

R = ((A) == (B))

Inputs

A
Anything that can be logically tested.
Type: double | integer | char | string | logical | struct | cell
Dimension: scalar | string | vector | matrix
B
Anything that can be logically tested.
Type: double | integer | char | string | logical | struct | cell
Dimension: scalar | string | vector | matrix

Outputs

R
Numerical representation of true or false (1 or 0).
Type: logical

Examples

Scalar comparison:
R = (4==3)
R = 0
Matrix comparison:
R = ([1 2;3 4] == [1 3;2 4])
R = [Matrix] 2 x 2
1  0
0  1  

Comments

The output R is typically used in an if condition, if (R)

.