floor: Difference between revisions
Jump to navigation
Jump to search
(New page: ==Function deleteStrProp== Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned. ===Usage=== <s...) |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
== | {{MacroFunction | ||
Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned. | |name=floor | ||
|description=Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned. | |||
|usage= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: result = floor(num)] | [h: result = floor(num)] | ||
</ | </syntaxhighlight> | ||
|examples= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: floor(2)] | [r: floor(2)] | ||
</ | </syntaxhighlight> | ||
Returns 2. | Returns 2. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: floor(1.2)] | [r: floor(1.2)] | ||
</ | </syntaxhighlight> | ||
Returns 1. | Returns 1. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: floor(-1.2)] | [r: floor(-1.2)] | ||
</ | </syntaxhighlight> | ||
Returns -2. | Returns -2. | ||
}} | |||
[[Category:Mathematical Function]] |
Latest revision as of 23:59, 14 March 2023
floor() Function
Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned.
Usage
[h: result = floor(num)]
Examples
[r: floor(2)]
Returns 2.
[r: floor(1.2)]
Returns 1.
[r: floor(-1.2)]