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

asinhf函数


概要:
#include <math.h>
float asinhf(float x);

描述:

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


参数:
float x

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


返回值:

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


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

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

int main(void)
{
    float value = 2.0f;
    float area;

    area = asinhf(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.


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