|
|
1 NAME 2 fmod - floating point modulus 3 4 SYNOPSIS 5 float fmod(float x, float y) 6 7 8 DESCRIPTION 9 Return the value f, for which there exists an integer k such that 10 k * y + f == x, f has the same sign of x, and the absolute value of 11 f is less than the absolute value of y. 12 13 ERRORS 14 A domain error will result if y == 0.0. 15 16 SEE ALSO 17 kfun/ceil, kfun/floor