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:
• 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:
Arguments
• A, B, C, ... can be arrays, scalars, or strings.