max
max(a, b, c, ...)
max(A)
max(A, dimension)
Compute the maximum value of a list of values.
Try it yourself:
$1 | max(2, 3, 4, 1)
| |
$2 | max([2, 3, 4, 1])
| |
$3 | max([2, 5; 4, 3])
| |
$4 | max([2, 5; 4, 3], 1)
| |
$5 | max([2, 5; 4, 3], 2)
| |
$6 | max(2.7, 7.1, -4.5, 2.0, 4.1)
| |
$7 | min(2.7, 7.1, -4.5, 2.0, 4.1)
|