|
ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
FDIM(3) BSD Library Functions Manual FDIM(3)
NAME
fdim -- return difference if positive, 0 otherwise
SYNOPSIS
#include <math.h>
double
fdim(double x, double y);
long double
fdiml(long double x, long double y);
float
fdimf(float x, float y);
DESCRIPTION
The fdim() functions return the "positive difference" between their arguments: x - y if x > y, +0 if x
is less than or equal to y.
SEE ALSO
fma(3), fmax(3), fmin(3)
STANDARDS
The fdim() functions conform to ISO/IEC 9899:1999(E).
BSD July 24, 2003 BSD
|
|