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

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