acoshl函数
概要:
#include <math.h> long double acoshl(long double x);
描述:
该函数计算参数x的(非负)反双曲余弦值。
如果参数x的值小于1,将发生域错误。
参数:
long double x
            参数为一个long double类型的浮点数,取值范围不小于1。
返回值:
函数返回参数x的反双曲余弦值,返回值位于区间[0,+∞]内。
范例:
|  |  | 
输出:
The arc hyperbolic cosine of 2.000000 is 1.316958.
相关内容:
| acosh | double类型的反双曲余弦函数。 | 
| acoshf | float类型的反双曲余弦函数。 |