math.listProduct: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page math.listProduct to Math.listProduct without leaving a redirect: Converting page title to first-letter uppercase)
No edit summary
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: result = math.listProduct(list)]
[h: result = math.listProduct(list)]
[h: result = math.listProduct(list, delim)]
[h: result = math.listProduct(list, delim)]
</source>
</syntaxhighlight>


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: list1 = "6,2.5,-4"]
[h: list1 = "6,2.5,-4"]
[r: math.listProduct(list1)]
[r: math.listProduct(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.listProduct(list2, "#")]
[r: math.listProduct(list2, "#")]
</source>
</syntaxhighlight>
Returns:
Returns:
<pre>
<pre>

Latest revision as of 23:11, 14 March 2023

math.listProduct() Function

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

Usage

[h: result = math.listProduct(list)]
[h: result = math.listProduct(list, delim)]

Examples

[h: list1 = "6,2.5,-4"]
[r: math.listProduct(list1)]
[h: list2 = "1#2#3#4#1#2#3#1#2"]
[r: math.listProduct(list2, "#")]

Returns:

 -60.0
 288