函数
<cmath> <ctgmath>

sinh

double sinh (double x);
     double sinh  (double x);      float sinhf (float x);long double sinhl (long double x);
     double sinh (double x);      float sinh (float x);long double sinh (long double x);
     double sinh (double x);      float sinh (float x);long double sinh (long double x);     double sinh (T x);           // additional overloads for integral types
计算双曲正弦
返回 x 的双曲正弦。

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此函数在 <complex><valarray> 中被重载(参见 complex sinhvalarray sinh)。
此头文件 (<cmath>) 为整型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(为任何整型 T 定义)。

此函数也在 <complex><valarray> 中被重载(参见 complex sinhvalarray sinh)。

参数

x
表示双曲角的值。

返回值

x 的双曲正弦。
如果结果的绝对值太大,无法用返回类型的值表示,则函数返回带有正确符号的 HUGE_VAL(或 HUGE_VALFHUGE_VALL),并发生上溢范围错误

如果发生上溢范围错误,全局变量 errno 会被设置为 ERANGE
如果发生上溢范围错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 被设置为 ERANGE
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_OVERFLOW

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* sinh example */
#include <stdio.h>      /* printf */
#include <math.h>       /* sinh, log */

int main ()
{
  double param, result;
  param = log(2.0);
  result = sinh (param);
  printf ("The hyperbolic sine of %f is %f.\n", param, result );
  return 0;
}

输出

The hyperbolic sine of 0.693147 is 0.750000.


另见