| Applying science to business management |
  
min
Format: min( list )
min( x1, x2, ... )
Arguments: [any] list Input list
(any) x1, x2, ... Input values
Returns: (any) The smallest element in list if
only one argument is supplied or the smallest of all arguments if
more than one argument is supplied
Note: If list contains text strings, min
returns the string that is first in an alphabetic sort of all
elements.
Examples: min([1,2,3,4,5]) = 1
min(1,2,3,4,5) = 1
min(["a","b","c"])
= a
See Also: pct, max, med,
count, sum, prod,
avg, std, variance,
emv, bin
|