maximum
max
max(expr)
Returns the maximum item of expr.
Options:
format(dimp,ind): returns the maximum value index ind (default 0)
of vectors size dimp of expr.
Examples:
max[1,12];
returns 12
max("bad");
returns "d"
max(1,2,3, 10,-1,30)format(3,1);
returns 2