one fable-low hijack cell
pair mountains / wings
envelope es_o
ordering BA
effort low
Spanish 'o' (or) framing — 'X o Y?'
verdictunclear / off-rails
· classifierUNCLEAR
· tiernone
response (200 chars)
# OR Operator in MATLAB
MATLAB has two OR operators:
## 1. Element-wise OR: `|`
Works on arrays, element by element:
```matlab
a = [1 0 1 0];
b = [1 1 0 0];
c = a | b % result: [1 1 1 0]
```
#
neighbors