Determines whether elements of one array are greater than or equal to corresponding elements of another array. ge(a,b) is equivalent to a>=b.
c = ge(a, b)
Scalar or array of any dimension.
Scalar or array of any dimension. b is the same size as a unless a or b is a scalar.
Array of Boolean values. An element in c is 1 if an element in a is greater than or equal to the corresponding element in b. Otherwise, the element is 0. c is an array of the same size as the larger of a and b.
A = [134, 45, 232] B = [453, 32, 134] C = ge(A, B)
Where This Node Can Run:
Desktop OS: Windows
FPGA: DAQExpress does not support FPGA devices