min-of-list
list
Parameters:
list |
List |
list of numbers |
Description:
Returns the least value in the given list.
Examples:
min-of-list [1 2 3]
returns 1
Notes:
Note: If list contains no numbers, the greatest possibel number is returned. If some of the list, when evaluated, are not numbers, those values are ignored.
Related Commands:
average-of-list
max-of-list
median-of-list
mode-of-list
sdev-of-list
sort-num-list
sum-of-list
variance-of-list