fdim

Autres langues

Langue: fr

Version: 30 juillet 2003 (openSuse - 09/10/07)

Section: 3 (Bibliothèques de fonctions)

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 renvoir Nan.

CONFORMITÉ

C99

VOIR AUSSI

fmax(3)

TRADUCTION

Christophe Blaess, 2003.