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

定義

2 つの値の商のアークタンジェントを計算し、結果を で pi除算します。

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

パラメーター

y
NFloat

点の y 座標。

x
NFloat

点の x 座標。

戻り値

で割った xyアークタンジェント。を で除算しますpi

実装

注釈

これは、間隔 [-1, +1]で計算されますarctan(y / x) / π

適用対象