函数
<cmath> <ctgmath>

cosh

double cosh (double x);
     double cosh  (double x);      float coshf (float x);long double coshl (long double x);
     double cosh (double x);      float cosh (float x);long double cosh (long double x);
     double cosh (double x);      float cosh (float x);long double cosh (long double x);     double cosh (T x);           // additional overloads for integral types
计算双曲余弦
返回 x 的双曲余弦。

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

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

参数

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
/* cosh example */
#include <stdio.h>      /* printf */
#include <math.h>       /* cosh, log */

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

输出

The hyperbolic cosine of 0.693147 is 1.250000.


另见