TGAMMA

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


NOM
SYNOPSIS
DESCRIPTION
CONFORME À
VOIR AUSSI
TRADUCTION

NOM

tgamma, tgammaf, tgammal - Véritables fonctions Gamma.

SYNOPSIS

#include <math.h>
double tgamma(double x);
float tgammaf(float x);
long double tgammal(long double x);

DESCRIPTION

Ces fonctions renvoient la valeur de la fonction Gamma pour l'argument x. Le préfixe "t" signifie "true gamma" (« véritable fonction Gamma ») car il existe deja une fonction gamma() qui retourne un autre résultat. Pour plus de détails, voir lgamma(3).

CONFORME À

C99.

VOIR AUSSI

lgamma(3), gamma(3)

TRADUCTION

Thierry Vignaud <tvignaud@mandrakesoft.com>, 2002
Christophe Blaess, 2003.