Share via


tanh, tanhf, tanhl

計算雙曲正切值。

語法

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

參數

x
角度 (弧度)。

傳回值

tanh 函式會傳回 x 的雙曲正切。 沒有傳回錯誤。

輸入 SEH 例外狀況 _matherr 例外
± QNaN,IND none _DOMAIN

備註

因為 C++ 允許多載,所以您可以呼叫採用並傳回 tanhfloat 值的 long double 的多載。 在 C 程式中,除非您使用 <tgmath.h> 宏來呼叫此函式, tanh 否則一律會採用 並傳 double 回 。

如果您使用 中的 tanh<tgmath.h> 宏,引數的類型會決定選取哪一個函式版本。 如需詳細資訊,請參閱 類型泛型數學

根據預設,此函式的全域狀態會限定于應用程式。 若要變更此行為,請參閱 CRT 中的全域狀態。

需求

常式 必要的標頭 (C) 必要的標頭 (C)
tanh, tanhf, tanhl <math.h> <cmath><math.h>
tanh 宏觀 <tgmath.h>

如需相容性詳細資訊,請參閱相容性

範例

// 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

另請參閱

數學和浮點支援
acosh, acoshf, acoshl
asinh, asinhf, asinhl
atanh, atanhf, atanhl
cosh, coshf, coshl
sinh, sinhf, sinhl