共用方式為


MathF.ReciprocalEstimate(Single) 方法

定義

傳回指定數位的相互估計值。

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

要估計其相互數的數位。

傳回

Single

的相互 x 估計值。

備註

在 x86/x64 硬體上,這可以使用 RCPSS 具有最大相對錯誤的 1.5 * 2^-12 指示。

在 ARM64 硬體上,這可以使用 FRECPE 執行單一Newton-Raphson反復專案的指示。

在沒有特殊支援的硬體上,這可能只會傳回 1.0 / x

適用於