The ceil node returns the ceiling of the value of its child-node. In other words, it rounds up the child-node's value to the smallest integer not less than it.
The ceil node's value is calculated by finding the smallest integer not less than the value of its child-node.
| input | output |
|---|---|
| 34.2323 | 35 |
| 34.0000 | 34 |
| -34.2323 | -34 |