Div
%Div function
Function
The function returns the result of an integer division of the arguments arg1 / arg2.
Declaration
REAL %Div(
UNIVAL in arg1,
UNIVAL in arg2
)Parameters
arg1 | Function dividend of Int, Real or RelTime type. |
arg2 | Function divisor of Int, Real or RelTime type. |
INT _i
_i := 7.0/4.0 ; the assignment operator rounds the value of the variable _i = 2
_i := %Div(7.0, 4.0) ; %Div function removes all digits after the decimal point and returns _i = 1 Note
The function may be used in:
the expression for object of Eval tag type
the statement for object of Historical value type
the script of object Event type
the script of active picture
Related pages: