MathF.ReciprocalEstimate(Single) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回指定數位的相互估計值。
public:
static float ReciprocalEstimate(float x);
public static float ReciprocalEstimate (float x);
static member ReciprocalEstimate : single -> single
Public Shared Function ReciprocalEstimate (x As Single) As Single
參數
- x
- Single
要估計其相互數的數位。
傳回
的相互 x
估計值。
備註
在 x86/x64 硬體上,這可以使用 RCPSS
具有最大相對錯誤的 1.5 * 2^-12
指示。
在 ARM64 硬體上,這可以使用 FRECPE
執行單一Newton-Raphson反復專案的指示。
在沒有特殊支援的硬體上,這可能只會傳回 1.0 / x
。