contents   index   previous   next



Clib.fmod()

syntax:

Clib.fmod(x, y)

where:

x - number to work with, numerator.

 

y - number to work with, denominator.

 

return:

This method returns the remainder of x/y.

 

description:

This method returns the remainder of x/y, that is, the modulus of two floats..

 

see:

Clib.modf(), Clib.div()

 

example:

 


Clib.frexp()