NAME
drem, dremf, dreml, remainder, remainderf, remainderl - floating-point remainder function
SYNOPSIS
#include <math.h> /* The C99 versions */ double remainder(double x, double y); float remainderf(float x, float y); long double remainderl(long double x, long double y); /* Obsolete synonyms */ double drem(double x, double y); float dremf(float x, float y); long double dreml(long double x, long double y); Link with -lm. Feature Test Macro Requirements for glibc (see feature_test_macros(7)): remainder(): _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 500 || /* Since glibc 2.19: */ _DEFAULT_SOURCE || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE remainderf(), remainderl(): _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L || /* Since glibc 2.19: */ _DEFAULT_SOURCE || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE drem(), dremf(), dreml(): /* Since glibc 2.19: */ _DEFAULT_SOURCE || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
DESCRIPTION
These functions compute the remainder of dividing x by y. The return value is x-n*y, where n is the value x / y, rounded to the nearest integer. If the absolute value of x-n*y is 0.5, n is chosen to be even. These functions are unaffected by the current rounding mode (see fenv(3)). The drem() function does precisely the same thing.
RETURN VALUE
On success, these functions return the floating-point remainder, x-n*y. If the return value is 0, it has the sign of x. If x or y is a NaN, a NaN is returned. If x is an infinity, and y is not a NaN, a domain error occurs, and a NaN is returned. If y is zero, and x is not a NaN, a domain error occurs, and a NaN is returned.
ERRORS
See math_error(7) for information on how to determine whether an error has occurred when calling these functions. The following errors can occur: Domain error: x is an infinity and y is not a NaN errno is set to EDOM (but see BUGS). An invalid floating-point exception (FE_INVALID) is raised. These functions do not set errno for this case. Domain error: y is zero errno is set to EDOM. An invalid floating-point exception (FE_INVALID) is raised.
ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). ┌───────────────────────────┬───────────────┬─────────┐ │Interface │ Attribute │ Value │ ├───────────────────────────┼───────────────┼─────────┤ │drem(), dremf(), dreml(), │ Thread safety │ MT-Safe │ │remainder(), remainderf(), │ │ │ │remainderl() │ │ │ └───────────────────────────┴───────────────┴─────────┘
CONFORMING TO
The functions remainder(), remainderf(), and remainderl() are specified in C99, POSIX.1-2001, and POSIX.1-2008. The function drem() is from 4.3BSD. The float and long double variants dremf() and dreml() exist on some systems, such as Tru64 and glibc2. Avoid the use of these functions in favor of remainder() etc.
BUGS
Before glibc 2.15, the call remainder(nan(""), 0); returned a NaN, as expected, but wrongly caused a domain error. Since glibc 2.15, a silent NaN (i.e., no domain error) is returned. Before glibc 2.15, errno was not set to EDOM for the domain error that occurs when x is an infinity and y is not a NaN. errno was not set
EXAMPLE
The call "remainder(29.0, 3.0)" returns -1.
SEE ALSO
div(3), fmod(3), remquo(3)
COLOPHON
This page is part of release 4.09 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. 2016-12-12 REMAINDER(3)
More Linux Commands
manpages/userptr.3form.html
userptr(3form) - associate application data with a form item
Every form and every form item has a field that can be used to hold application-specific data (that is, the form-driver code leaves it alone). These functions g
manpages/cat.1.html
cat(1) - concatenate files and print on the standard output
Concatenate FILE(s), or standard input, to standard output. -A, --show-all equivalent to -vET -b, --number-nonblank number nonempty output lines, overrides -n -
manpages/FcValueSave.3.html
FcValueSave(3) - Copy a value (Library - Linux man page)....
Returns a copy of v duplicating any object referenced by it so that v may be safely destroyed without harming the new value. VERSION Fontconfig version 2.8.0 Fc
manpages/systemd-readahead-done.timer.8.html
systemd-readahead-done.timer(8) Disk read ahead logic.......
systemd-readahead-collect.service is a service that collects disk usage patterns at boot time. systemd-readahead-replay.service is a service that replays this a
manpages/optionFree.3.html
optionFree(3) free allocated option processing memory.......
AutoOpts sometimes allocates memory and puts pointers to it in the option state structures. This routine deallocates all such memory. pOpts program options desc
manpages/mpool.3.html
mpool(3) - shared memory buffer pool - Linux manual page....
mpool.3 - Note well: This page documents interfaces provided in glibc up until version 2.1. Since version 2.2, glibc no longer provides these interfaces. Probab
manpages/cfgetospeed.3.html
cfgetospeed(3) - get and set terminal attributes, line contr
The termios functions describe a general terminal interface that is provided to control asynchronous communications ports. The termios structure Many of the fun
manpages/gnutls_x509_privkey_export.3.html
gnutls_x509_privkey_export(3) - API function (Man Page).....
This function will export the private key to a PKCS1 structure for RSA keys, or an integer sequence for DSA keys. The DSA keys are in the same format with the p
manpages/pthread_kill_other_threads_np.3.html
pthread_kill_other_threads_np(3) - terminate all other threa
pthread_kill_other_threads_np() has an effect only in the LinuxThreads threading implementation. On that implementation, calling this function causes the immedi
manpages/tclsh.1.html
tclsh(1) - Simple shell containing Tcl interpreter (ManPage)
Tclsh is a shell-like application that reads Tcl commands from its standard input or from a file and evaluates them. If invoked with no arguments then it runs i
manpages/systemd-cryptsetup-generator.8.html
systemd-cryptsetup-generator(8) Unit generator for etc crypt
systemd-cryptsetup-generator is a generator that translates /etc/crypttab into native systemd units early at boot and when configuration of the system manager i
manpages/Tcl_UniCharToUtfDString.3.html
Tcl_UniCharToUtfDString(3) - routines for manipulating UTF-8
These routines convert between UTF-8 strings and Tcl_UniChars. A Tcl_UniChar is a Unicode character represented as an unsigned, fixed-size quantity. A UTF-8 cha
