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

asinhl函数


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

描述:

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


参数:
long double x

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


返回值:

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


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

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

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

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

    return 0;
}

输出:

The arc hyperbolic sine of 2.000000 is 1.443635.


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