函数
<cmath> <ctgmath>

atan

double atan(double x);
     double atan  (double x);      float atanf (float x);long double atanl (long double x);
     double atan (double x);      float atan (float x);long double atan (long double x);
     double atan (double x);      float atan (float x);long double atan (long double x);     double atan (T x);           // additional overloads for integral types
计算反正切
返回 x 的反正切主值,以弧度表示。

在三角学中,反正切正切的反运算。

请注意,由于符号的歧义性,该函数无法仅通过其正切值来确定角度落在哪个象限。请参阅 atan2,它接受一个分数形式的参数作为替代方案。

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
该函数在 <valarray> 中被重载(参见 valarray atan)。
此头文件 (<cmath>) 中为整型类型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(定义为 T 是任何整型类型)。

该函数在 <complex><valarray> 中也被重载(参见 complex atanvalarray atan)。

参数

x
要计算反正切的值。

返回值

x 的反正切主值,在区间 [-pi/2, +pi/2] 弧度内。
弧度等于 180/PI

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* atan example */
#include <stdio.h>      /* printf */
#include <math.h>       /* atan */

#define PI 3.14159265

int main ()
{
  double param, result;
  param = 1.0;
  result = atan (param) * 180 / PI;
  printf ("The arc tangent of %f is %f degrees\n", param, result );
  return 0;
}

输出

The arc tangent of 1.000000 is 45.000000 degrees.


另见