double MathArctan(double x)
The MathArctan returns the arctangent of x. If x is 0, MathArctan returns 0. MathArctan returns a value within the range of -π/2 to π/2 radians.
MathArctan 関数は、x のアークタンジェントを返します。もし、x が 0 の場合、MathArctan は 0 を返します。MathArctan は -π/2 から π/2 ラジアンの範囲内の値を返します。
Parameters:
パラメータ:
1 2 | <b>x</b> - A number representing a tangent. タンジェントを表している数値。 |
Sample:
サンプル:
1 2 3 4 | double x=-862.42, y; y=MathArctan(x); Print("Arctangent of ",x," is ",y); //Output: Arctangent of -862.42 is -1.5696 |