C Math asinh() 函数
示例
返回不同数字的反正双曲正弦值
printf("%f", asinh(7));
printf("%f", asinh(56));
printf("%f", asinh(2.45));
自己动手试一试 »
定义和用法
The asinh()
function returns the inverse hyperbolic sine of a number。
The asinh()
function is defined in the <math.h>
header file。
语法
以下之一
asinh(double number);
参数值
参数 | 描述 |
---|---|
数字 | 必需。指定一个数字。 |
技术详情
返回 | A double value representing the inverse hyperbolic sine of a number。 |
---|