min(args)

Minimum of arguments.

min([3,2,1,32])
argsList of numbers, vectors, and/or matrices.
return valueThe smallest number among all of them.

The argument can be a vector, a matrix, or a list of numbers, vectors, or matrices. The function finds the minimum of all the elements inside them.

The numbers must be comparable, thus complex numbers cannot be used with this function. In case of quantities, all arguments must have the same unit.

min(2,1,[4,2;3,5],[23,2])