ceil function

float ceil(x)
float[] ceil(x)

x floatfloat[]

Returns the upward-rounded integer value for x. Integral values remain unchanged. For arrays, the function is applied element-wise and returns a new array with the rounded values.

Related