Maxima and Minima of an Array |
max(A, B, C, ...) Returns the largest value from A, B, C, ... If the elements are complex, max returns the largest real part of any value plus i times the largest imaginary part of any value. For example, max(2 + 3i, 3 + 2i) = 3 + 3i.
min(A, B, C, ...) Returns the smallest value from A, B, C, ... If the elements are complex, min returns the smallest real part of any value plus i times the smallest imaginary part of any value.
A, B, C, ... can be arrays, scalars, or strings.