round: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
m (Conversion script moved page round to Round without leaving a redirect: Converting page title to first-letter uppercase)
(No difference)

Revision as of 22:28, 9 February 2023

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)]

Parameters

  • value - Input value to round.
  • precision - Number of decimal places to retain. Default is 0.

Examples

[r: round(1.45)]

Returns 1

[r: round(1.45, 1)]

Returns 1.5

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