Minimum refers to the value in a collection of values that is the least or smallest.
In mathematics, the minimum of a function is the smallest value that the function takes at a point either within a given neighborhood (local or relative minimum) or on the function domain in its entirety (absolute minimum).
Examples
Python
>> import numpy as np
>> np.min([0, 1, 2])
0
See also min