C 语言库函数 - atan()
C 语言标准库 <math.h> 函数 double atan(double x) 返回以弧度表示的 x 的反正切
头文件
#include <math.h>
函数原型
下面是 atan() 函数的原型
double atan(double x)
参数
- x : 浮点值
返回值
该函数返回以弧度表示的 x 的反正切,弧度区间为 [-pi/2,+pi/2]
范例
下面的范例演示了 atan() 函数的用法。
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <math.h> #define PI 3.14159265 int main () { double x, ret, val; x = 1.2; val = 180.0 / PI; ret = atan (x) * val; printf("%lf 的反正切是 %lf 度\n", x, ret); return(0); }
编译运行范例,输出结果如下
$ gcc main.c && ./a.out 1.200000 的反正切是 50.194429 度