[][src]Function arrayfire::ge

pub fn ge<T, U>(arg1: &T, arg2: &U, batch: bool) -> Array<bool> where
    T: Convertable,
    U: Convertable,
    <T as Convertable>::OutType: ImplicitPromote<<U as Convertable>::OutType>,
    <U as Convertable>::OutType: ImplicitPromote<<T as Convertable>::OutType>, 

Perform greater than equals comparison operation

This is a comparison operation.

Parameters

Both parameters arg1 and arg2 can be either an Array or a value of rust integral type.

Return Values

An Array with results of the comparison operation a.k.a an Array of boolean values.

Important Notes