Next: floor, floorf, ceil, ceilf—floor and ceiling, Previous: fabs, fabsf—absolute value (magnitude), Up: Mathematical Functions (math.h) [Contents][Index]
fdim, fdimf—positive differenceSynopsis
#include <math.h> double fdim(double x, double y); float fdimf(float x, float y);
Description
The fdim functions determine the positive difference between their
arguments, returning:
x - y if x > y, or
+0 if x <= y, or
NAN if either argument is NAN.
A range error may occur.
Returns
The fdim functions return the positive difference value.
Portability
ANSI C, POSIX.