共用方式為


tanh、 、 tanhftanhl

計算雙曲正切值。

語法

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、 、 tanhftanhl <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、 、 acoshfacoshl
asinh、 、 asinhfasinhl
atanh、 、 atanhfatanhl
cosh、 、 coshfcoshl
sinh、 、 sinhfsinhl