ceiling: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) No edit summary |
Verisimilar (talk | contribs) m (Macros:Functions:ceiling moved to ceiling) |
(No difference)
|
Revision as of 23:42, 6 March 2009
ceiling() Function
Returns the number passed in if it is an integer, otherwise it returns the number rounded up to the next integer.
Usage
[h: val = ceil(num)]
[h: val = ceiling(num)]
Examples
[r: ceil(10)]
Returns 10.
[r: ceil(1.2)]
Returns 2.
[r: ceil(-1.2)]