MathArctan

2019/07/17 19:00
183

double MathArctan( double x)

MathArctan関数はxにおけるアークタンジェント値を返す。もしxが0ならばMathArctan関数は0を返す。
MathArctanはラジアン範囲で-π/2からπ/2までの値を返す。

Parameters:
x - タンジェント値
Sample:
double x=-862.42, y;
y=MathArctan(x);
Print("Arctangent of “,x,” is ",y);
//Output: Arctangent of -862.42 is -1.5696

コメント