Espaces de noms
Variantes
Affichages
Actions

lgamma

De cppreference.com
< c‎ | numeric‎ | math

 
 
 
Fonctions mathématiques courantes
Fonctions
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Opérations de base
Original:
Basic operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
remainder (C99)
remquo (C99)
fma (C99)
fmax (C99)
fmin (C99)
fdim (C99)
nan
nanf
nanl
(C99)
(C99)
(C99)
Les fonctions exponentielles
Original:
Exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
exp
exp2 (C99)
expm1 (C99)
log
log10
log1p (C99)
log2 (C99)
Les fonctions de puissance
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
sqrt
cbrt (C99)
hypot (C99)
pow
Les fonctions trigonométriques et hyperboliques
Original:
Trigonometric and hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
sinh
cosh
tanh
asinh (C99)
acosh (C99)
atanh (C99)
Erreur fonctions et gamma
Original:
Error and gamma functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
erf (C99)
erfc (C99)
lgamma (C99)
tgamma (C99)
Entier le plus proche opérations en virgule flottante
Original:
Nearest integer floating point operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ceil
floor
round
lround
llround
(C99)
(C99)
(C99)
trunc (C99)
nearbyint (C99)
rint
lrint
llrint
(C99)
(C99)
(C99)
Flottant fonctions de manipulation de points
Original:
Floating point manipulation functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ldexp
scalbn
scalbln
(C99)
(C99)
ilogb (C99)
logb (C99)
Classification
Original:
Classification
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
fpclassify (C99)
isfinite (C99)
isinf (C99)
isnan (C99)
isnormal (C99)
signbit (C99)
Macro constantes
Original:
Macro constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FP_NORMAL
FP_SUBNORMAL
FP_ZERO
FP_INFINITE
FP_NAN
(C99)
(C99)
(C99)
(C99)
(C99)
 
Déclaré dans l'en-tête <math.h>
float       lgammaf( float arg );
double      lgamma( double arg );
long double lgammal( long double arg );
Calcule le logarithme naturel de la valeur absolue de la fonction gamma de arg .
Original:
Computes the natural logarithm of the absolute value of the fonction gamma of arg.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Sommaire

[modifier] Paramètres

arg -
valeur du point flottant
Original:
floating point value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Retourne la valeur

La valeur du logarithme de la fonction de gamma d'arg, qui est log
e
|
0
targ-1
e-t dt|
.
Original:
The value of the logarithm of the gamma function of arg, that is log
e
|
0
targ-1
e-t dt|
.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si arg est un nombre naturel, lgamma(arg) est le logarithme de la factorielle de arg-1 .
Original:
If arg is a natural number, lgamma(arg) is the logarithm of the factorial of arg-1.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Exceptions

Si arg est zéro ou un entier négatif, une erreur peut se produire pôle et FE_INVALID ou FE_DIVBYZERO peut être soulevée .
Original:
If arg is zero or a negative integer, pole error may occur and FE_INVALID or FE_DIVBYZERO may be raised.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si arg est trop grande, l'erreur peut se produire plage et FE_OVERFLOW peut être soulevée .
Original:
If arg is too large, range error may occur and FE_OVERFLOW may be raised.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Notes

POSIX specification nécessite en outre que chaque exécution de lgamma stocke le signe de la fonction gamma d'arg dans la variable externe signgam .
Original:
POSIX specification additionally requires that each execution of lgamma stores the sign of the gamma function of arg in the external variable signgam.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Voir aussi

(C99)
fonction gamma
Original:
gamma function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]

[modifier] Liens externes

Weisstein, Eric W. "Log Gamma Function." De MathWorld - Une ressource Web Wolfram .
Original:
Weisstein, Eric W. "Log Gamma Function." From MathWorld--A Wolfram Web Resource.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.