man fdim (Fonctions bibliothèques) - Différence positive.
NOM
fdim, fdimf, fdiml - Différence positive.
SYNOPSIS
#include <math.h> double fdim(double x, double y); float fdimf(float x, float y); long double fdiml(long double x, long double y);
DESCRIPTION
Cette fonction renvoie max(x-y,0). Si x ou y ou les deux sont NaN, alors elle renvoie NaN.
CONFORMITÉ
C99
VOIR AUSSI
TRADUCTION
Christophe Blaess, 2003.