greaterThanEqual — perform a component-wise greater-than-or-equal comparison of two vectors
bvec greaterThanEqual( | vec x, |
vec y); |
bvec greaterThanEqual( | ivec x, |
ivec y); |
bvec greaterThanEqual( | uvec x, |
uvec y); |
xSpecifies the first vector to be used in the comparison operation.
ySpecifies the second vector to be used in the comparison operation.
greaterThanEqual returns a boolean vector in which each element i is computed
as x[i] ≥ y[i].