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