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

acoshf函数


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

描述:

该函数计算参数x的(非负)反双曲余弦值。

如果参数x的值小于1,将发生域错误。


参数:
float x

参数为一个float类型的浮点数,取值范围不小于1


返回值:

函数返回参数x的反双曲余弦值,返回值位于区间[0,+∞]内。


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

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

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

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

    return 0;
}

输出:

The arc hyperbolic cosine of 2.000000 is 1.316958.


相关内容:
acosh double类型的反双曲余弦函数。
acoshl long double类型的反双曲余弦函数。