NFloat.Atan2(NFloat, NFloat) メソッド

定義

2 つの値の商のアークタンジェントを計算します。

public:
 static System::Runtime::InteropServices::NFloat Atan2(System::Runtime::InteropServices::NFloat y, System::Runtime::InteropServices::NFloat x) = System::Numerics::IFloatingPointIeee754<System::Runtime::InteropServices::NFloat>::Atan2;
public static System.Runtime.InteropServices.NFloat Atan2(System.Runtime.InteropServices.NFloat y, System.Runtime.InteropServices.NFloat x);
static member Atan2 : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Atan2 (y As NFloat, x As NFloat) As NFloat

パラメーター

y
NFloat

点の y 座標。

x
NFloat

点の x 座標。

返品

yのアークタンジェントをxで除算します。

実装

注釈

これにより、ラジアンarctan(y / x)間隔で[-π, +π]が計算されます。

適用対象