C庫函式double atan2(doubly y, double x) 返回y / x的弧度圓弧切線,根據這兩個值,以確定正確的象限上的標誌。
以下是atan2() 函式的宣告。
double atan2(doubly y, double x)
x -- 這是浮點值,表示x坐標。
y -- 這是浮點值同比y坐標。
這個函式返回的主要y / x的反正切,在區間 [-pi,+pi] 弧度.
下面的例子顯示atan2()函式的用法。
#include <stdio.h> #include <math.h> #define PI 3.14159265 int main () { double x, y, ret, val; x = -7.0; y = 7.0; val = 180.0 / PI; ret = atan2 (y,x) * val; printf("The arc tangent of x = %lf, y = %lf ", x, y); printf("is %lf degrees ", ret); return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
The arc tangent of x = -7.000000, y = 7.000000 is 135.000000 degrees