Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <math.h> double fdim(double x, double y); (C11) These functions compute the positive difference between the floating-point numbers x and y. |
Return val. | x - y if x > y 0 if x <= y
depending on the function type, if an overflow occurs. |
See also | fmax, fmin |