opendarwin man page for remainder

Query: remainder

OS: opendarwin

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

REMAINDER(3)						   BSD Library Functions Manual 					      REMAINDER(3)

NAME
remainder -- floating-point remainder function
SYNOPSIS
#include <math.h> double remainder(double x, double y); float remainderf(float x, float y);
DESCRIPTION
The remainder() and remainderf() functions compute the value r such that r = x - n*y, where n is the integer nearest the exact value of x/y. If there are two integers closest to x/y, n shall be the even one. If r is zero, it is given the same sign as x.
SPECIAL VALUES
remainder(x, y) returns a NaN and raises the "invalid" floating-point exception if x is infinite or y is 0.
SEE ALSO
math(3)
STANDARDS
The remainder() and remainderf() functions conform to ISO/IEC 9899:1999(E).
BSD
July 22, 2003 BSD
Related Man Pages
remainder(3) - mojave
remainderf(3) - mojave
remainderf(3) - osx
remainderf(3) - freebsd
remquo(3) - freebsd
Similar Topics in the Unix Linux Community
Remainder of x/y in shell script
HELP! If statement with remainder testing
Use sed to delete remainder of line after pattern
sed -- Find pattern -- print remainder -- plus lines up to pattern -- Minus pattern
Bash script to get total size off of remainder calculated