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


ceil(x) #Output: Number



Parser expressionDescription


ceil(-1.3)


This example returns -1.0


ceil(0)


This example returns 0.0


ceil(2.3)


This example returns 3.0



Parameters used in this function

ParameterInput (data type)Description
x

Any given number.



This function returns a





Status
Tech review

Style guide




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

Label