24 lines
616 B
Markdown

# Function min
Compute the minimum value of a list of values. In case of a multi dimensional array, the minimum of the flattened array will be calculated. When dim is provided, the maximum over the selected dimension will be calculated.
min(a, b, c, ...) min(A) min(A, dim)
### Parameters
Parameter | Type | Description
--------- | ---- | -----------
`args` | ... * | A single matrix or multiple scalar values
### Returns
Type | Description
---- | -----------
* | res
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->