Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 9.0

(Shrike)

tgamma(3)


TGAMMA

TGAMMA

NAME
SYNOPSIS
DESCRIPTION
CONFORMING TO
SEE ALSO

NAME

tgamma, tgammaf, tgammal − true gamma function

SYNOPSIS

#include <math.h>

double tgamma(double x);
float tgammaf(float
x);
long double tgammal(long double
x);

DESCRIPTION

This function returns the value of the Gamma function for the argument x. It had to be called "true gamma function" since there is already a function gamma() that returns something else. For details, see lgamma(3).

CONFORMING TO

C99.

SEE ALSO

lgamma(3), gamma(3)



tgamma(3)