math.arrayProduct: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Adding documentation for math.arrayProduct() function coming in 1.7)
 
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: result = math.arrayProduct(array)]
[h: result = math.arrayProduct(array)]
</source>
</syntaxhighlight>


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: theArray = json.append("", 6, 2.5, -4)]
[h: theArray = json.append("", 6, 2.5, -4)]
[r: math.arrayProduct(theArray)]
[r: math.arrayProduct(theArray)]
</source>
</syntaxhighlight>
Returns:<source lang="mtmacro" line start=3>-60.0</source>
Returns:<syntaxhighlight lang="mtmacro" line start=3>-60.0</syntaxhighlight>
}}
}}
[[Category:Mathematical Function]]
[[Category:Mathematical Function]]
[[Category:JSON Function]]
[[Category:JSON Function]]

Latest revision as of 23:13, 14 March 2023

math.arrayProduct() Function

Introduced in version 1.7
Multiplies together the contents of a JSON Array. Only allows numeric elements - any non-numeric values will produce an error.

Usage

[h: result = math.arrayProduct(array)]

Examples

[h: theArray = json.append("", 6, 2.5, -4)]
[r: math.arrayProduct(theArray)]
Returns:
-60.0