atan2関数群
[指定形式]
double atan2(double y, double x)
float atan2f(float y, float x)
long double atan2l(long double y, long double x) 【V2.01.00以降】
[詳細説明]
y/xの逆正接を計算します。
[特殊ケース]
条件
返却値
例外
x==0,y==0
NaN
EDOM
x==±∞,y==±∞
アンダーフロー時
±0
ERANGE
x<0,y==0
π
-
x==0
±π/2