with_least([N], [X])
with_least({N}, {X})
Returns the value from an array [X] or the list {X} whose position in the array or list corresponds to the smallest value in the array [N] or list {N}.
Inputs: numeric array or list, same dimensioned array or list with members of any type
Result: single value from second input
Example:
with_least([2,5,7,3], ["red", "blue", "green", "yellow"]) --> "red"
This example would require the definition of an enumerated type with the members "red", "blue", "green" and "yellow".
In: Contents >> Working with equations >> Functions >> Built-in functions