Rmod
Description
This function returns the real modulus (the remainder from division) of real number x divided by real number y, which is denoted by formula
/math-d3bcd8f2bf8df376835516f43691e83c.png)
where
is the integer of
round toward 0.
Syntax
double rmod( double x,double y)
Parameter
x:
- is the dividend. Can be any real number.
y
- is the divisor. Can be any real number.
Return
Returns the real modulus of real number x divided by real number y.
Examples
val1 = rmod(4.5, 2); // val1 is 0.5 val2 = rmod(4.2,1.3); // val2 is 0.3