eq(m,n)

The eq(m,n) function determines equality of m and n.

Example

OML

>> m=[1 2;3 4]

1 2

3 4

>> n=[1 3;3 5]

1 3

3 5

>> eq(m,n)

1 0

1 0