sinh() - C函式


C庫函式 double sinh(double x)返回x的雙曲正弦。 

宣告

以下是 sinh() 函式的宣告。

double sinh(double x)

引數

  • x -- 這是浮點值。

返回值

這個函式返回x的雙曲正弦。

例子

下面的例子顯示 sinh() 函式的用法。

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

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

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

讓我們編譯和執行上面的程式,這將產生以下結果:

The hyperboloc sine of 0.500000 is 0.521095 degrees