C++ 中的asin() 函数以弧度返回数字的反正弦。
该函数在<cmath> 头文件中定义。
[Mathematics] sin-1x = asin(x) [In C++ Programming];
asin() 原型 [从 C++ 11 标准开始]
double asin(double x); float asin(float x); long double asin(long double x); double asin (T x);
参数:
asin() 函数采用 [-1, 1] 范围内的单个强制参数。
这是因为正弦的值在 1 和 -1 的范围内。
返回:
假设参数在 [-1, 1] 范围内,asin() 函数返回 [-π/2, π/2] 范围内的值。
如果参数大于 1 或小于 -1,asin() 返回 NaN
,即不是数字。
参数 (x) | 返回值 |
---|---|
x = [-1, 1] | [-π/, π/2] 以弧度为单位 |
-1 > x 或 x > 1 | NaN(不是数字) |
示例 1:asin() 如何工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = 0.25, result;
result = asin(x);
cout << "asin(x) = " << result << " radians" << endl;
// result in degrees
cout << "asin(x) = " << result*180/3.1415 << " degrees" << endl;
return 0;
}
运行程序时,输出将是:
asin(x) = 0.25268 radians asin(x) = 14.4779 degrees
示例 2:asin() 具有整数类型的函数
#include <iostream>
#include <cmath>
#define PI 3.141592654
using namespace std;
int main()
{
int x = 1;
double result;
result = asin(x);
cout << "asin(x) = " << result << " radians" << endl;
// Converting result to degrees
cout << "asin(x) = " << result*180/PI << " degrees";
return 0;
}
运行程序时,输出将是:
asin(x) = 1.5708 radians asin(x) = 90 degrees
相关用法
- C++ complex asin()用法及代码示例
- C++ asinh()用法及代码示例
- C++ complex asinh()用法及代码示例
- 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++ array get()用法及代码示例
注:本文由纯净天空筛选整理自 C++ asin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。