a
(float, default: 0): The floating-point number to be rounded up.result
(float): The smallest integer greater than or equal to the input value.a
input of the CEIL node.result
output will contain the input value rounded up to the nearest integer.a
input of the CEIL node.result
output of the CEIL node will contain the average price rounded up to the nearest integer (e.g., 15).ceil(-1.5)
will output -1
, not -2
.