Difference between revisions of "Manuals/calci/CEILING"
(Created page with "<div id="16SpaceContent" align="left"><div class="ZEditBox" align="justify"> Syntax </div></div> ---- <div id="4SpaceContent" align="left"><div class="ZEditBox" align=...") |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | <div | + | <div style="font-size:30px">'''CEILING (Number,Significance) '''</div><br/> |
− | + | *Where 'Number' is the numeric value to round and | |
+ | *'Significance' is the multiple to round the number. | ||
+ | **CEILING() rounds the number up, away from zero, to its nearest multiple of significance. | ||
− | + | == Description == | |
− | |||
− | |||
− | + | CEILING(Number, Significance) | |
− | + | For Example, | |
− | |||
− | |||
− | + | CEILING(3.5, 2) ''returns 4''. | |
− | + | CEILING(-4.6, -2) ''returns -6''. | |
− | -- | ||
− | |||
− | |||
− | |||
− | + | *Calci returns an NaN error message if the argument is nonnumeric. | |
+ | *Calci returns an #ERROR message if 'number' and 'significance' have different signs. | ||
+ | *If the number is an exact multiple of significance, rounding will not be done. Calci will display the same number as output. | ||
+ | *If significance value is not mentioned, Calci assumes it to be 1. | ||
+ | *This function can also be used for array of numbers in form of equation as- | ||
− | + | a) CEILING(3.33..6.33,0.1) where x varies from 3.33 to 6.33 and displays output to multiples of 0.1. ''Displays 3.4,4.4,5.4,6.4'' as output. | |
− | |||
− | |||
− | |||
− | |||
− | + | b) 2.5..4.5|CEILING(x+2,2)| where x varies from 2.5 to 4.5 , adds value 2 and displays output to multiples of 2. ''Displays 6,6,8'' as output. | |
− | + | == Examples == | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<div id="6SpaceContent" class="zcontent" align="left"> | <div id="6SpaceContent" class="zcontent" align="left"> | ||
{| id="TABLE3" class="SpreadSheet blue" | {| id="TABLE3" class="SpreadSheet blue" | ||
|- class="even" | |- class="even" | ||
− | + | | class=" " | '''Function''' | |
− | + | | class=" " | '''Output''' | |
− | |||
− | |||
− | | class=" " | | ||
− | | class=" " | | ||
|- class="odd" | |- class="odd" | ||
− | | class=" " | | + | | class="sshl_f" |CEILING(67.5,5) |
− | + | | class="sshl_f" |70 | |
− | | class="sshl_f " | | ||
− | |||
− | |||
|- class="even" | |- class="even" | ||
− | + | | class="sshl_f" |CEILING(1000.34,3) | |
− | | class="sshl_f" | | + | | class="sshl_f" |1002 |
− | | class="sshl_f" | | ||
− | |||
− | |||
|- class="odd" | |- class="odd" | ||
− | + | | class="sshl_f" |CEILING(22.3) | |
− | | class="sshl_f | + | | class="sshl_f" |23 |
− | |||
− | |||
− | |||
− | | class="sshl_f" | | ||
|- class="even" | |- class="even" | ||
− | + | | class="sshl_f" |CEILING(-89.45,-2) | |
− | | class="sshl_f" | | + | | class="sshl_f" |-90 |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | | class="sshl_f" | ||
− | |||
− | |- | ||
− | |||
− | |||
− | |||
− | |||
− | |||
|} | |} | ||
− | + | ==Related Videos== | |
− | + | ||
− | + | {{#ev:youtube|2kQZ_i3VGn0|280|center|CEILING}} | |
+ | |||
+ | == See Also == | ||
+ | |||
+ | *[[Manuals/calci/FLOOR | FLOOR]] | ||
+ | |||
+ | *[[Manuals/calci/INT| INT]] | ||
+ | |||
+ | *[[Manuals/calci/ROUND | ROUND]] | ||
+ | |||
+ | *[[Manuals/calci/ROUNDUP | ROUNDUP]] | ||
+ | |||
+ | *[[Manuals/calci/ROUNDDOWN | ROUNDDOWN]] | ||
− | + | *[[Manuals/calci/TRUNC| TRUNC]] | |
− | + | ==References== | |
− | + | *[http://en.wikipedia.org/wiki/Rounding#Tie-breaking Rounding] | |
+ | *[http://http://en.wikipedia.org/wiki/Floor_and_ceiling_functions CEILING Function] | ||
− | |||
− | + | *[[Z_API_Functions | List of Main Z Functions]] | |
− | + | *[[ Z3 | Z3 home ]] | |
− | |||
− |
Latest revision as of 18:35, 13 August 2018
CEILING (Number,Significance)
- Where 'Number' is the numeric value to round and
- 'Significance' is the multiple to round the number.
- CEILING() rounds the number up, away from zero, to its nearest multiple of significance.
Description
CEILING(Number, Significance)
For Example,
CEILING(3.5, 2) returns 4.
CEILING(-4.6, -2) returns -6.
- Calci returns an NaN error message if the argument is nonnumeric.
- Calci returns an #ERROR message if 'number' and 'significance' have different signs.
- If the number is an exact multiple of significance, rounding will not be done. Calci will display the same number as output.
- If significance value is not mentioned, Calci assumes it to be 1.
- This function can also be used for array of numbers in form of equation as-
a) CEILING(3.33..6.33,0.1) where x varies from 3.33 to 6.33 and displays output to multiples of 0.1. Displays 3.4,4.4,5.4,6.4 as output.
b) 2.5..4.5|CEILING(x+2,2)| where x varies from 2.5 to 4.5 , adds value 2 and displays output to multiples of 2. Displays 6,6,8 as output.
Examples
Function | Output |
CEILING(67.5,5) | 70 |
CEILING(1000.34,3) | 1002 |
CEILING(22.3) | 23 |
CEILING(-89.45,-2) | -90 |
Related Videos
See Also
References