ulab.compare – Comparison functions¶
-
ulab.compare.clip(x1, x2, x3)¶ Constrain the values from
x1to be betweenx2andx3.x2is assumed to be less than or equal tox3. Arguments may be ulab arrays or numbers. All array arguments must be the same size. If the inputs are all scalars, a 1-element array is returned. Shorthand forulab.maximum(x2, ulab.minimum(x1, x3))
-
ulab.compare.equal(x1, x2)¶ Return an array of bool which is true where x1[i] == x2[i] and false elsewhere
-
ulab.compare.not_equal(x1, x2)¶ Return an array of bool which is false where x1[i] == x2[i] and true elsewhere
-
ulab.compare.maximum(x1, x2)¶ Compute the element by element maximum of the arguments. Arguments may be ulab arrays or numbers. All array arguments must be the same size. If the inputs are both scalars, a number is returned
-
ulab.compare.minimum(x1, x2)¶ Compute the element by element minimum of the arguments. Arguments may be ulab arrays or numbers. All array arguments must be the same size. If the inputs are both scalars, a number is returned