gte

open infix fun gte(other: F64Array): F64Array

Compares if each element in the array is greater than or equal to another array.

Return

the computed array, where 1.0 is true and 0.0 is false

Parameters

other

the other array, must have the same shape as this array


open infix fun gte(other: Double): F64Array

Compares if each element in the array is greater than or equal to a scalar.

Return

the computed array, where 1.0 is true and 0.0 is false

Parameters

other

the scalar