FDIM

Section: Manuel du programmeur Linux (3)
Updated: 30 juillet 2003
Index


NOM
SYNOPSIS
DESCRIPTION
CONFORMITÉ
VOIR AUSSI
TRADUCTION

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.