当前位置: C语言 -- 标准库 -- <math.h> -- asinh

asinh函数


概要:
#include <math.h>
double asinh(double x);

描述:

该函数计算参数x的反双曲正弦值。


参数:
double x

参数为一个double类型的浮点数。


返回值:

函数返回参数x的反双曲正弦值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数asinh范例*/

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

int main(void)
{
    double value = 2.0;
    double area;

    area = asinh(value);
    printf("The arc hyperbolic sine of %.6f is %.6f.\n", value, area);

    return 0;
}

输出:

The arc hyperbolic sine of 2.000000 is 1.443635.


相关内容:
asinhf float类型的反双曲正弦函数。
asinhl long double类型的反双曲正弦函数。