1function C = ge (A, B)
2%A >= B greater than or equal to.
3% C = (A >= B) is an element-by-element comparison of A and B.  One or
4% both may be scalars.  Otherwise, A and B must have the same size.
5%
6% See also GrB/lt, GrB/le, GrB/gt, GrB/ne, GrB/eq.
7
8% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
9% SPDX-License-Identifier: GPL-3.0-or-later
10
11C = le (B, A) ;
12
13