minb
Element-wise minimum of two arrays (kernel-level).
Syntax
Section titled “Syntax”C = minb(A, B)Description
Section titled “Description”Returns min(A, B) applied elementwise. Function-form name used internally by the kernel; min (the user-facing name) dispatches here for the two-argument case. Documented for completeness — most code should call min directly.
Example
Section titled “Example”minb([1 5 3], [4 2 3]) % [1 2 3]