函数
<cmath> <ctgmath>

asinh

     double asinh  (double x);      float asinhf (float x);long double asinhl (long double x);
     double asinh (double x);      float asinh (float x);long double asinh (long double x);     double asinh (T x);           // additional overloads for integral types
计算双曲反正弦
返回 x 的双曲反正弦。

双曲反正弦双曲正弦的逆运算。

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

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

参数

x
计算双曲反正弦的值。

返回值

x 的双曲反正弦。

示例

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

int main ()
{
  double param, result;
  param = exp(2) - cosh(2);
  result = asinh(param) ;
  printf ("The area hyperbolic sine of %f is %f.\n", param, result);
  return 0;
}

输出

The area hyperbolic sine of 3.626860 is 2.000000.


另见