divide: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Text replacement - "source>" to "syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 4: Line 4:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: props = divide(num, num, ...)]
[h: props = divide(num, num, ...)]
</source>
</syntaxhighlight>


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: divide(4, 2)]
[r: divide(4, 2)]
</source>
</syntaxhighlight>
Returns 2.
Returns 2.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: divide(24, 2, 2)]
[r: divide(24, 2, 2)]
</source>
</syntaxhighlight>
Returns 6.
Returns 6.
}}
}}
[[Category:Mathematical Function]]
[[Category:Mathematical Function]]

Latest revision as of 17:48, 14 March 2023

divide() Function

Divides the first number by the second number, and then divides that result by the third number --if present-- and so on for all the numbers passed to the function.

Usage

[h: props = divide(num, num, ...)]

Examples

[r: divide(4, 2)]

Returns 2.

[r: divide(24, 2, 2)]
Returns 6.