max(args)

Maximum of arguments.

max([3,2,1,32])
argsList of numbers, vectors, and/or matrices.
return valueThe biggest 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 maximum 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.

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