bitOr
Syntax
bitOr(X, Y)
or
X | Y
Arguments
X and Y are numeric scalar, vectors, matrices or tables.
Details
Return the result of the bitOr operation.
Examples
x=1 0 1;
y=0 1 1;
x | y;
// output
[1,1,1]
bitOr(X, Y)
or
X | Y
X and Y are numeric scalar, vectors, matrices or tables.
Return the result of the bitOr operation.
x=1 0 1;
y=0 1 1;
x | y;
// output
[1,1,1]