Difference between revisions of "Round"
Jump to navigation
Jump to search
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<c>round</c> rounds a number to the specified number of decimal places. | <c>round</c> rounds a number to the specified number of decimal places. | ||
+ | See also: [[floor]], [[ceil]] | ||
=== Arguments === | === Arguments === | ||
Line 8: | Line 9: | ||
! Parameter Name !! Default Value !! Meaning | ! Parameter Name !! Default Value !! Meaning | ||
|- | |- | ||
− | | ''x'' || number || number to round | + | | ''x'' || 0 || number to round |
+ | |- | ||
+ | | ''decimalPlaces'' || 0 || number of decimal places to round to (may be negative) | ||
|} | |} | ||
− | |||
− | |||
− | |||
== Examples == | == Examples == | ||
− | <ms> | + | <ms>round(pi, 2) // returns 3.14 |
− | round(12345, -3) | + | round(12345, -3) // returns 12000</ms> |
[[Category:Intrinsic Functions]] | [[Category:Intrinsic Functions]] | ||
[[Category:Numeric Functions]] | [[Category:Numeric Functions]] |