greaterThan — perform a component-wise greater-than comparison of two vectors
bvec greaterThan( | vec x, |
vec y); |
bvec greaterThan( | ivec x, |
ivec y); |
bvec greaterThan( | 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.
greaterThan returns a boolean vector in which each element i is computed
as x[i] > y[i].