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