round: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
|usage=
|usage=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: result = round(number, precision)]
[h: result = round(value, precision)]
</source>
</source>



Revision as of 23:48, 24 February 2010

round() Function

Returns the rounded value of a number to specified precision (number of digits after the decimal point). precision can be zero (default).

Usage

[h: result = round(value, precision)]

Examples

[r: round(1.45)]

Returns 1

[r: round(1.45, 1)]

Returns 1.5

[r: round(1.44,1)]
Returns 1.4