tan, tanf, tanh, tanhf
Calcular a tangente (tan ou tanf) ou (tangente hiperbólicatanh ou tanhf).
double tan(
double x
);
float tan(
float x
); // C++ only
long double tan(
long double x
); // C++ only
float tanf(
float x
);
double tanh(
double x
);
float tanh(
float x
); // C++ only
long double tanh(
long double x
); // C++ only
float tanhf(
float x
);
Parâmetros
- x
Ângulo em radianos.
Valor de retorno
tan Retorna a tangente de x. If x é maior que ou igual a 263 ou menor que ou igual a –263, um significativo no resultado da perda.
Entrada |
Exceção SEH |
Matherr Exceção |
---|---|---|
± QNAN, OCALIZAR |
Nenhum |
_DOMAIN |
± ∞ (tan, tanf) |
INVALID |
_DOMAIN |
tanh Retorna a tangente hiperbólica de x. Não há nenhum retorno de erro.
Comentários
C++ permite sobrecarga, para que os usuários podem chamar sobrecargas de tan e tanh que levar float ou long double tipos. Em um programa C, a tan e tanh funções sempre usam e retornam duplas.
Requisitos
Rotina |
Cabeçalho necessário |
---|---|
tan, tanf, tanh, tanhf |
<math.h> |
Para obter informações adicionais compatibilidade, consulte Compatibilidade na introdução.
Exemplo
// crt_tan.c
// This program displays the tangent of pi / 4
// and the hyperbolic tangent of the result.
//
#include <math.h>
#include <stdio.h>
int main( void )
{
double pi = 3.1415926535;
double x, y;
x = tan( pi / 4 );
y = tanh( x );
printf( "tan( %f ) = %f\n", pi/4, x );
printf( "tanh( %f ) = %f\n", x, y );
}
tan( 0.785398 ) = 1.000000 tanh( 1.000000 ) = 0.761594