C++ 中的asinh() 函数以弧度返回数字的反双曲正弦(反双曲正弦)。
asinh() 函数采用单个参数并以弧度返回该值的反双曲正弦值。
该函数在<cmath> 头文件中定义。
[Mathematics] sinh-1 x = asinh(x) [In C++ Programming]
asinh() 原型 [从 C++ 11 标准开始]
double asinh(double x); float asinh(float x); long double asinh(long double x); double asinh(T x); // For integral type
参数:
asinh() 函数采用一个强制参数,该参数要计算其反双曲正弦值。
它可以是任何值,即负数、正数或零。
返回:
asinh() 函数以弧度返回参数的反双曲正弦值。
示例 1:asinh() 函数在 C++ 中如何工作?
#include <iostream>
#include <cmath>
#define PI 3.141592654
using namespace std;
int main()
{
double x = -6.82, result;
result = asinh(x);
cout << "asinh(x) = " << result << " radian" << endl;
// result in degrees
cout << "asinh(x) = " << result*180/PI << " degree" << endl;
return 0;
}
运行程序时,输出将是:
asinh(x) = -2.61834 radian asinh(x) = -150.02 degree
示例 2:asinh() 具有整数类型的函数
#include <iostream>
#include <cmath>
#define PI 3.141592654
using namespace std;
int main()
{
int x = 11;
double result;
result = asinh(x);
cout << "asinh(x) = " << result << " radian" << endl;
// result in degrees
cout << "asinh(x) = " << result*180/PI << " degree" << endl;
return 0;
}
运行程序时,输出将是:
asinh(x) = 3.0931 radian asinh(x) = 177.222 degree
相关用法
- C++ asinh()用法及代码示例
- C++ complex asinh()用法及代码示例
- C++ complex asin()用法及代码示例
- C++ asin()用法及代码示例
- C++ asctime()用法及代码示例
- C++ atexit()用法及代码示例
- C++ any_of()用法及代码示例
- C++ atof()用法及代码示例
- C++ abort()用法及代码示例
- C++ atol()用法及代码示例
- C++ complex acosh()用法及代码示例
- C++ array at()用法及代码示例
- C++ array::fill()、array::swap()用法及代码示例
- C++ atoll()用法及代码示例
- C++ array::size()用法及代码示例
- C++ array::rbegin()、array::rend()用法及代码示例
- C++ atan()用法及代码示例
- C++ complex abs()用法及代码示例
- C++ array::front()、array::back()用法及代码示例
- C++ array::front()用法及代码示例
注:本文由纯净天空筛选整理自 C++ asinh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。