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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。