Function |
Description |
---|---|
Returns the average value over all input values |
|
Returns the maximum from a list of values |
|
Returns the minimum from a list of values |
Returns the average value over all input values
real uAvg(value, ...)
A list of numeric arguments
uAvg(1,2,3,4,5) // returns 3
Returns the maximum from a list of values
uMax(value,...)
A list of numeric arguments
uMax(1, 6, 4, -6) // returns 6
uMax("b", "A", "a") // returns "b"
uMax("2004-05_02", "2006-12-12", "1999-05-30") // returns "2006-12-12"
Returns the minimum from a list of values
uMin(value, ...|)
A list of numeric arguments
uMin(1, 6, 4, -6) // returns -6
uMin("b", "A", "a") // returns "A"
uMin("2004-05-02", "2006-12-12", "1999-05-30") //returns "1999-05-30"