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