IPnom Home • Manuals • FreeBSD

 FreeBSD Man Pages

Man Sections:Commands (1)System Calls (2)Library Functions (3)Device Drivers (4)File Formats (5)Miscellaneous (7)System Utilities (8)
Keyword Live Search (10 results max):
 Type in part of a command in the search box.
 


remainder(3)

NAME

     remainder, remainderf -- minimal residue functions


LIBRARY

     Math Library (libm, -lm)


SYNOPSIS

     #include <math.h>

     double
     remainder(double x, double y);

     float
     remainderf(float x, float y);


DESCRIPTION

     remainder() and remainderf() return the remainder r := x - n*y where n is
     the integer nearest the exact value of x/y; moreover if |n - x/y| = 1/2
     then n is even.  Consequently the remainder is computed exactly and |r|
     <= |y|/2.	But remainder(x, 0) and remainder(infinity, 0) are invalid
     operations that produce a NaN.


SEE ALSO

     fmod(3), ieee(3), math(3)


STANDARDS

     The remainder() and remainderf() routines conform to ISO/IEC 9899:1999
     (``ISO C99'') and IEEE Std 754-1985.


HISTORY

     The remainder() and remainderf() functions appeared in 4.3BSD and
     FreeBSD 2.0, respectively.

FreeBSD 5.4		       January 26, 2005 		   FreeBSD 5.4

SPONSORED LINKS




Man(1) output converted with man2html , sed , awk