C庫函數(shù)double atan(double x) 返回x的反正切弧度。
以下是atan() 函數(shù)的聲明。
double atan(double x)
x -- 這是浮點值。
這個函數(shù)返回主弧切線為x,在區(qū)間 [-pi/2,+pi/2] 弧度。
下面的例子顯示atan() 函數(shù)的用法。
#include <stdio.h> #include <math.h> #define PI 3.14159265 int main () { double x, ret, val; x = 1.0; val = 180.0 / PI; ret = atan (x) * val; printf("The arc tangent of %lf is %lf degrees", x, ret); return(0); }
讓我們編譯和運行上面的程序,這將產生以下結果:
The arc tangent of 1.000000 is 45.000000 degrees