Espaços nominais
Variantes
Acções

std::tgamma

Da cppreference.com
< cpp‎ | numeric‎ | math

 
 
Biblioteca numéricos
Funções matemáticas comuns
De ponto flutuante ambiente
Números complexos
Matrizes numéricas
Pseudo-aleatório de geração de números
Tempo de compilação aritmética racional(C++11)
Genéricos operações numéricas
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
Funções matemáticas comuns
Funções
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Operações básicas
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.
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Funções exponenciais
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.
(C++11)
(C++11)
(C++11)
(C++11)
Funções de poder
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.
(C++11)
(C++11)
Funções trigonométricas e hiperbólicas
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.
(C++11)
(C++11)
(C++11)
Erro e funções 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.
(C++11)
(C++11)
(C++11)
tgamma
(C++11)
Número inteiro mais próximo de operações de ponto flutuante
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.
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Flutuando funções de manipulação de pontos
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.
(C++11)(C++11)
(C++11)
(C++11)
Classificação / Comparação
Original:
Classification/Comparison
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Constantes de macros
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.
(C++11)(C++11)(C++11)(C++11)(C++11)
 
Definido no cabeçalho <cmath>
float       tgamma(float arg );
(desde C++11)
double      tgamma(double arg );
(desde C++11)
longdouble tgamma(longdouble arg );
(desde C++11)
double      tgamma( Integral arg );
(desde C++11)
Calcula a gama de funções de arg.
Original:
Computes the gama de funções of arg.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Índice

[editar]Parâmetros

arg -
flutuando valor de ponto
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.

[editar]Valor de retorno

O valor da função gama de arg, isto é
0
targ-1
e-t dt
.
Original:
The value of the gamma function of arg, that is
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.
Se arg é um número natural, std::tgamma(arg) é o fatorial de arg-1.
Original:
If arg is a natural number, std::tgamma(arg) is 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.

[editar]Exceções

Se arg é negativo, o erro de domínio pode ocorrer e pode ser elevado FE_INVALID.
Original:
If arg is negative, domain error may occur and FE_INVALID 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.
Se arg é zero, o erro pode ocorrer pólo e FE_DIVBYZERO pode ser levantada.
Original:
If arg is zero, pole error may occur and 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.
Se arg for demasiado grande, intervalo de erro pode ocorrer e pode ser elevado FE_OVERFLOW.
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.
Se arg é muito pequeno, intervalo de erro pode ocorrer e pode ser elevado FE_UNDERFLOW.
Original:
If arg is too small, range error may occur and FE_UNDERFLOW 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.

[editar]Notas

Muitas implementações calcular o exato número inteiro domínio fatorial se o argumento é um inteiro suficientemente pequeno.
Original:
Many implementations calculate the exact integer-domain factorial if the argument is a sufficiently small integer.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Exemplo

#include <iostream>#include <cmath>double factorial(double arg){return std::tgamma(arg +1);}int main(){std::cout<<"The factorial of 5 is "<< factorial(5)<<'\n'<<"The factorial of 100 is "<< factorial(100)<<'\n';}

Saída:

The factorial of 5 is 120 The factorial of 100 is 9.33262e+157


[editar]Veja também

(C++11)
logaritmo natural da função gama
Original:
natural logarithm of the gamma function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função)[edit]

[editar]Links externos

Weisstein, Eric W. "Gamma Function." De MathWorld - Um recurso Web Wolfram.
Original:
Weisstein, Eric W. "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.
close