tanh
, tanhf
, tanhl
Calcola la tangente iperbolica.
Sintassi
double tanh( double x );
float tanhf( float x );
long double tanhl( long double x );
#define tanh(x) // Requires C11 or higher
float tanh( float x ); // C++ only
long double tanh( long double x ); // C++ only
Parametri
x
Angolo in radianti.
Valore restituito
Le funzioni tanh
restituiscono la tangente iperbolica di x
. Non viene restituito alcun errore.
Input | Eccezione SEH | Eccezione _matherr |
---|---|---|
± QNaN, IND | Nessuno | _DOMAIN |
Osservazioni:
Dato che C++ consente l'overload, è possibile chiamare degli overload di tanh
che accettino e restituiscano valori float
o long double
. In un programma C, a meno che non si usi la <tgmath.h>
macro per chiamare questa funzione, tanh
accetta sempre e restituisce double
.
Se si utilizza la tanh
macro da <tgmath.h>
, il tipo dell'argomento determina quale versione della funzione è selezionata. Per informazioni dettagliate, vedere La matematica generica dei tipi.
Per impostazione predefinita, lo stato globale di questa funzione è limitato all'applicazione. Per modificare questo comportamento, vedere Stato globale in CRT.
Requisiti
Ciclo | Intestazione obbligatoria (C) | Intestazione obbligatoria (C) |
---|---|---|
tanh , tanhf , tanhl |
<math.h> |
<cmath> oppure <math.h> |
tanh macro |
<tgmath.h> |
Per altre informazioni sulla compatibilità, vedere Compatibility (Compatibilità).
Esempio
// crt_tanh.c
// This program displays the tangent of pi / 4
// and the hyperbolic tangent of the result.
// Compile by using: cl crt_tanh.c
#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
Vedi anche
Supporto matematico e a virgola mobile
acosh
, acoshf
, acoshl
asinh
, asinhf
, asinhl
atanh
, atanhf
, atanhl
cosh
, coshf
, coshl
sinh
, sinhf
, sinhl