class'rem()'
rem()
Extends from ModelicaReference.Icons.Information (Icon for general information packages).
Information
Integer remainder of the division of two Real numbers
Syntax
rem(x, y)
Description
Returns the integer remainder of x/y,
such that div(x,y) * y + rem(x, y) = x.
Result and arguments shall have type Real or
Integer. If either of the arguments is Real the
result is Real otherwise Integer. [Note, outside
of a when clause state events are triggered when
the return value changes discontinuously.]
Examples
rem(3,1.4) = 0.2 rem(-3,1.4) = -0.2 rem(3,-1.4) = 0.2