<math.h> -- 函数
阅读:0       作者:严长生

atan() 反正切函数,求反正切值

double atan(double x);

atan() 函数的功能是求反正切值。

反正切函数 atan() 和正切函数 tan() 的功能正好相反。tan() 是已知一个角的弧度值 x,求该角的正切值 y;而 atan() 是已知一个角的正切值 y,求该角的弧度值 x。

参数

  • x

    正切值。

返回值

正切值为 x 的角的度数,以弧度表示,区间为(-π/2, π/2)

注意:atan() 并不能确定角度所在的象限,例如求得的度数是 45°,并不能说明是第一象限的角度,还有可能是第三象限的角度。如果想进一步确定角度所在的象限,请使用 atan2()。

实例

求 1 的反正切值。
/* 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.