Find logical OR
A | B
or(A,B)
performs
a logical OR of arrays A
| B
A
and B
and
returns an array containing elements set to either logical 1 (true
)
or logical 0 (false
). An element of the output
array is set to logical 1 (true
) if either A
or B
contain
a nonzero element at that same array location. Otherwise, the array
element is set to 0.