math.arrayMax: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page Math.arrayMax to math.arrayMax: Converting page titles to lowercase)
No edit summary
 
Line 6: Line 6:


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


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: theArray = json.append("", 1, 3, 5.5, -4)]
[h: theArray = json.append("", 1, 3, 5.5, -4)]
[r: math.arrayMax(theArray)]
[r: math.arrayMax(theArray)]
</source>
</syntaxhighlight>
Returns:
Returns:
<code>5.5</code>
<code>5.5</code>

Latest revision as of 17:52, 15 March 2023

math.arrayMax() Function

Introduced in version 1.7
Find the maximum value in a JSON Array. Only allows numeric elements - any non-numeric values will produce an error.

Usage

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

Examples

[h: theArray = json.append("", 1, 3, 5.5, -4)]
[r: math.arrayMax(theArray)]

Returns:

5.5