Skip to content

minb

Element-wise minimum of two arrays (kernel-level).

C = minb(A, B)

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.

minb([1 5 3], [4 2 3]) % [1 2 3]
  • min — Minimum value along a dimension, or elementwise minimum of two inputs.
  • maxb — Element-wise maximum of two arrays (kernel-level).