Ceil-func
Minimum Origin Version Required: 2019 SR0
This function returns a value by adjusting the given value x away from 0 and to the multiple of sig nearest to x. That is,
double Ceil( double x[, double sig])
x
sig
Returns a value (or dataset) adjusting x away from 0 and to the multiple of sig nearest to x.
ceil(2.9714, 2)=; // ANS: ceil(2.9714, 2)=4 ceil(2.9714)=; // ANS: ceil(2.9714)=3 ceil(-2.9714, -2)=; // ANS: ceil(-2.9714, -2)=-4 ceil(-2.9714, 2)=; // ANS: ceil(-2.9714, 2)=-2
Floor