位置:首頁 > 高級語言 > C語言標準庫 > tanh() - C函數

tanh() - C函數

C庫函數 double tanh(double x)返回x的雙曲正切。 

聲明

以下是 tanh() 函數的聲明。

double tanh(double x)

參數

  • x -- 這是浮點值。

返回值

這個函數返回x的雙曲正切。

例子

下麵的例子演示了如何使用 tanh()函數。

#include <stdio.h>
#include <math.h>

int main ()
{
   double x, ret;
   x = 0.5;

   ret = tanh(x);
   printf("The hyperbolic tangent of %lf is %lf degrees", x, ret);
   
   return(0);
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

The hyperbolic tangent of 0.500000 is 0.462117 degrees