Array Max and Min

Returns the maximum and minimum values found in an array, along with the indexes for each value.

1378

Inputs/Outputs

datatype_icon

array

An n-dimensional array of any type.

datatype_icon

max value

Maximum value found in array.

datatype_icon

max index(es)

Index for the first max value.

If array is multidimensional, max index(es) is an array whose elements are the indexes for the first maximum value in array.

If array is empty, max index(es) and min index(es) are -1.

Data Type Changes Based on Input Array Dimension

The following table explains how the output data types change based on the dimension of the input array.

Dimensions in a numeric array max index(es) and min index(es) data type
1 scalar integers
More than 1 1D arrays that contain the indexes of the maximum and minimum values
datatype_icon

min value

Minimum value found in array.

datatype_icon

min index(es)

Index for the first min value.

If array is multidimensional, min index(es) is an array whose elements are the indexes for the first minimum value in array.

If array is empty, max index(es) and min index(es) are -1.

Data Type Changes Based on Input Array Dimension

The following table explains how the output data types change based on the dimension of the input array.

Dimensions in a numeric array max index(es) and min index(es) data type
1 scalar integers
More than 1 1D arrays that contain the indexes of the maximum and minimum values