该函数计算以弧度给定的角度的弧双曲正弦值。
其中,双曲正弦的弧是双曲正弦的倒数。
信-1x = asinh(x);
用法
假设以弧度给出的角度是 'x':
float asinh(float x);
double asinh(double x);
long double asinh(long double x);
double asinh(integral x);
参数
x: 要计算其反双曲正弦值的值。
返回值
该函数返回以弧度给定的角度的弧双曲正弦值。
例子1
让我们看一个简单的例子,当 degree 的值是整数类型时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int degree =90;
float x = degree*3.14/180;
std::cout << "Value of degree is:" <<degree<< std::endl;
cout<<"sinh(x):"<<sinh(x)<<'\n';
cout<<"asinh(x):"<<asinh(x);
return 0;
}
输出:
Value of degree is:90 sinh(x):2.2993 asinh(x):1.23298
在此示例中,asinh() 计算 x 的反双曲正弦值并返回值 1.23。
例子2
让我们看一个简单的例子,当 degree 的值是 float 类型时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float degree = 45.5;
float x = degree*3.14/180;
std::cout << "Value of degree is:" <<degree<< std::endl;
cout<<"sinh(x):"<<sinh(x)<<'\n';
cout<<"asinh(x):"<<asinh(x);
return 0;
}
输出:
Value of degree is:45.5 sinh(x):0.879727 asinh(x):0.727759
在本例中,asinh() 函数计算 x 的反双曲正弦值并返回值 0.72。
相关用法
- C++ Math asin()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math atan()用法及代码示例
- C++ Math atan2()用法及代码示例
- C++ Math abs()用法及代码示例
- C++ Math acos()用法及代码示例
- C++ Math atanh()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math asinh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。