Status
Tech review

Style guide



Short descriptionReturns the smallest mathematical integer that is greater than or equal to the input number.
Output

Available since




This function returns the ceiling value which is the smallest mathematical integer that is greater than or equal to x.


ceil(number x) #Output: Number



Parser expressionDescription


ceil(-1.3)


This example returns -1


ceil(0)


This example returns 0


ceil(2.3)


This example returns 3



Parameters used in this function

ParameterInput (data type)Description
x

Any given number.



This function returns a