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