Difference between revisions of "Manuals/calci/MROUND"
Jump to navigation
Jump to search
(7 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | =MROUND( | + | <div style="font-size:30px">'''MROUND (Number,Multiple)'''</div><br/> |
− | + | *Where 'Number' is the number to round and | |
− | *Where ' | + | *'Multiple' is the multiple value to which number is to be rounded. |
− | *' | + | **MROUND() returns a number rounded to the desired multiple |
− | |||
− | |||
== Description == | == Description == | ||
− | MROUND( | + | MROUND(Number, Multiple) |
− | This function is used to round a number | + | This function is used to round a number up or down depending on the multiple value. |
For Example, | For Example, | ||
− | MROUND(3. | + | MROUND(3.6, 2) ''returns 4'' as a result. |
− | MROUND( | + | MROUND(44.1, 4) ''returns 44'' as a result. |
− | * | + | *The number is rounded up or down, depending on the remainder of division of the number and the multiple. If the remainder is more than or equal to half the multiple value, the number is rounded up, else it is rounded down towards zero. |
− | + | *Calci returns an NaN error message if any argument is nonnumeric or omitted. | |
− | * | + | *Calci returns an #ERROR message if 'number' and 'multiple' have different signs. |
− | * | + | *If the number is an exact multiple, rounding will not be done. Calci will display the same number as output. |
− | *If | ||
MROUND() can also be used for multiple number array as - | MROUND() can also be used for multiple number array as - | ||
− | MROUND(2.5.. | + | MROUND(2.5..7.5, 2) that rounds the numbers from 2.5 to 7.5 to nearest multiple of 2. |
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
− | ! Number !! MROUND | + | ! Number !! Multiple !! MROUND |
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | 2.5 || 2 || 2 |
|- | |- | ||
− | | | + | | 3.5 || 2 || 4 |
|- | |- | ||
− | | 4.5 || | + | | 4.5 || 2 || 4 |
|- | |- | ||
− | | 5 || | + | | 5.5 || 2 || 6 |
|- | |- | ||
− | | | + | | 6.5 || 2 || 6 |
|- | |- | ||
− | | | + | | 7.5 || 2 || 8 |
|- | |- | ||
|} | |} | ||
+ | *ROUND() can be used to round a number to specified number of digits. | ||
*ROUNDUP() can be used to round a number away from zero. | *ROUNDUP() can be used to round a number away from zero. | ||
*ROUNDDOWN() can be used to round a number towards zero. | *ROUNDDOWN() can be used to round a number towards zero. | ||
− | |||
== Examples == | == Examples == | ||
Line 64: | Line 57: | ||
|- class="odd" | |- class="odd" | ||
− | | class="sshl_f" | MROUND(3. | + | | class="sshl_f" | MROUND(3.67,2) |
− | | class="sshl_f" | | + | | class="sshl_f" | 4 |
|- class="even" | |- class="even" | ||
− | | class="sshl_f" | MROUND(99 | + | | class="sshl_f" | MROUND(99,3) |
| class="sshl_f" | 99 | | class="sshl_f" | 99 | ||
|- class="odd" | |- class="odd" | ||
− | | class="sshl_f" | MROUND( | + | | class="sshl_f" | MROUND(4.35,0.01) |
− | | class="sshl_f" | | + | | class="sshl_f" | 4.35 |
|- class="even" | |- class="even" | ||
− | | class="sshl_f" | MROUND( | + | | class="sshl_f" | MROUND(-89.65,-3) |
− | | class="sshl_f" | | + | | class="sshl_f" | -90 |
+ | |} | ||
− | + | ==Related Videos== | |
− | |||
− | |||
− | | | + | {{#ev:youtube|dyMgvQLTzVE|280|center|MROUND}} |
− | | | ||
− | |||
− | |||
== See Also == | == See Also == | ||
Line 107: | Line 96: | ||
*[http://en.wikipedia.org/wiki/Rounding Round Function] | *[http://en.wikipedia.org/wiki/Rounding Round Function] | ||
+ | |||
+ | |||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | |||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 14:56, 21 August 2018
MROUND (Number,Multiple)
- Where 'Number' is the number to round and
- 'Multiple' is the multiple value to which number is to be rounded.
- MROUND() returns a number rounded to the desired multiple
Description
MROUND(Number, Multiple)
This function is used to round a number up or down depending on the multiple value.
For Example,
MROUND(3.6, 2) returns 4 as a result.
MROUND(44.1, 4) returns 44 as a result.
- The number is rounded up or down, depending on the remainder of division of the number and the multiple. If the remainder is more than or equal to half the multiple value, the number is rounded up, else it is rounded down towards zero.
- Calci returns an NaN error message if any argument is nonnumeric or omitted.
- Calci returns an #ERROR message if 'number' and 'multiple' have different signs.
- If the number is an exact multiple, rounding will not be done. Calci will display the same number as output.
MROUND() can also be used for multiple number array as -
MROUND(2.5..7.5, 2) that rounds the numbers from 2.5 to 7.5 to nearest multiple of 2.
Number | Multiple | MROUND |
---|---|---|
2.5 | 2 | 2 |
3.5 | 2 | 4 |
4.5 | 2 | 4 |
5.5 | 2 | 6 |
6.5 | 2 | 6 |
7.5 | 2 | 8 |
- ROUND() can be used to round a number to specified number of digits.
- ROUNDUP() can be used to round a number away from zero.
- ROUNDDOWN() can be used to round a number towards zero.
Examples
Function | Output |
MROUND(3.67,2) | 4 |
MROUND(99,3) | 99 |
MROUND(4.35,0.01) | 4.35 |
MROUND(-89.65,-3) | -90 |
Related Videos
See Also
References