Fix(Function)

Truncates everything after the radix point and gets the integer value.

Fix (<expression>)

Parameters
<expression>
The expression that truncates everything after the radix point (double-precision type)

Return Value
Returns the value of the integer.
The content of the value is the truncated value of the specified expression.

Description
Truncates everything after the radix point for the specified value and return the value of the integer part.For example, Fix(-1.5) would return -1.Fix(1.5) returns 1.
When an argument has been given a negative value, the int function returns an integer that does not exceed the maximum negative of the argument and in relation to this, Fix returns the minimum negative integer exceeding the argument.For example, if -7.2 is specified as the argument, the int function returns -8 and the Fix function returns -7.

Example
Truncate the measurement results after the radix point and output them.
      NUMBER1&=Fix(9.7)
        NUMBER2&=Fix(-9.7)
        NUMBER3&=Fix(-9.2) 

The results are as follows:
NUMBER1&=9
NUMBER2&=-9
NUMBER3&=-9