maxb
Element-wise maximum of two arrays (kernel-level).
Syntax
Section titled “Syntax”C = maxb(A, B)Description
Section titled “Description”Counterpart of minb. Use max instead in user code.
Example
Section titled “Example”maxb([1 5 3], [4 2 3]) % [4 5 3]