math.listMin: Difference between revisions
Jump to navigation
Jump to search
(Adding documentation for math.listMin() function coming in 1.7) |
No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 6: | Line 6: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: result = math.listMin(list)] | [h: result = math.listMin(list)] | ||
[h: result = math.listMin(list, delim)] | [h: result = math.listMin(list, delim)] | ||
</ | </syntaxhighlight> | ||
|examples= | |examples= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: list1 = "1,3,5.5,-4"] | [h: list1 = "1,3,5.5,-4"] | ||
[r: math.listMin(list1)] | [r: math.listMin(list1)] | ||
[h: list2 = "1#2#3#4#1#2#3#1#2"] | [h: list2 = "1#2#3#4#1#2#3#1#2"] | ||
[r: math.listMin(list2, "#")] | [r: math.listMin(list2, "#")] | ||
</ | </syntaxhighlight> | ||
Returns: | Returns: | ||
<pre> | <pre> |
Latest revision as of 23:11, 14 March 2023
math.listMin() Function
• Introduced in version 1.7
Find the minimum value in a String List. Only allows numeric elements - any non-numeric values will produce an error.
Usage
[h: result = math.listMin(list)]
[h: result = math.listMin(list, delim)]
Examples
[h: list1 = "1,3,5.5,-4"]
[r: math.listMin(list1)]
[h: list2 = "1#2#3#4#1#2#3#1#2"]
[r: math.listMin(list2, "#")]
Returns:
-4 1