math.arraySum: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page Math.arraySum to math.arraySum: Converting page titles to lowercase) |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: result = math.arraySum(array)] | [h: result = math.arraySum(array)] | ||
</ | </syntaxhighlight> | ||
|examples= | |examples= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: theArray = json.append("", 1, 3, 5.5, -4)] | [h: theArray = json.append("", 1, 3, 5.5, -4)] | ||
[r: math.arraySum(theArray)] | [r: math.arraySum(theArray)] | ||
</ | </syntaxhighlight> | ||
Returns:< | Returns:<syntaxhighlight lang="mtmacro" line start=3>5.5</syntaxhighlight> | ||
}} | }} | ||
[[Category:Mathematical Function]] | [[Category:Mathematical Function]] | ||
[[Category:JSON Function]] | [[Category:JSON Function]] |
Latest revision as of 23:59, 14 March 2023
math.arraySum() Function
• Introduced in version 1.7
Adds together the contents of a JSON Array. Only allows numeric elements - any non-numeric values will produce an error.
Usage
[h: result = math.arraySum(array)]
Examples
[h: theArray = json.append("", 1, 3, 5.5, -4)]
[r: math.arraySum(theArray)]
5.5