Group: | Operators |
See also: | && |
Function: | || | |
Description: | || is a operator for the logical operation or. |
Usage: | z = x || y | |
Input: | ||
x | array | |
y | array | |
Output: | ||
z | array |
(#(3,4,5)<4) || (#(5,4,3)<4)
Contents of _tmp [1,] 1 [2,] 0 [3,] 1
Group: | Operators |
See also: | && |