Double.Atan2Pi(Double, Double) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算兩個值商的反正切值,並將結果除以 pi
。
public:
static double Atan2Pi(double y, double x) = System::Numerics::IFloatingPointIeee754<double>::Atan2Pi;
public static double Atan2Pi (double y, double x);
static member Atan2Pi : double * double -> double
Public Shared Function Atan2Pi (y As Double, x As Double) As Double
參數
- y
- Double
點的 Y 座標。
- x
- Double
點的 X 座標。
傳回
除以 的 y
反正切函數,除以 pi
。 x
實作
備註
arctan(y / x) / π
這會以間隔 [-1, +1]
計算。