C ++asinh()函数
asinh()函数是cmath标头的库函数,用于查找给定值的面积双曲正弦,它接受数字(x)并返回x的面积双曲正弦。
asinh()函数语法:asinh(x);
参数: x –是要计算其面积双曲正弦的数字/值。
返回值: double-返回double类型值,它是给定数字/值x的面积双曲正弦值。
示例Input:
float x = 2.45;
Function call:
asinh(x);
Output:
1.6285
C ++代码演示asinh()函数示例//示例
// asinh()功能
#include
#include
using namespace std;
// main()部分
int main(){
float x;
x = 1.0;
cout<
x = 10.23;
cout<
x = 2.45;
cout<
return 0;
}
输出结果asinh(1): 0.881374
asinh(10.23): 3.02085
asinh(2.45): 1.6285
参考:C ++asinh()函数