The 'MathFloor' function rounds down the input number to the nearest integer.
int @MathFloor(double value);
Parameters
double value : value that you want to calculate
Return Value
calculated result
Example
d = @MathFloor(1.23456);
Description : '1.23456' is rounded down to two decimal places. '1', the calculated result, is stored in the variable named 'd'.
Reference