ge
Element-wise greater-than-or-equal test (function form of >=).
Syntax
Section titled “Syntax”C = ge(A, B)Description
Section titled “Description”Returns a logical array where each element is true if A(i) >= B(i).
Example
Section titled “Example”ge([1 2 3], 2) % [0 1 1]