Language

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

逆数を推定する数値。

返品

xの逆数の推定値。

注釈

x86/x64 ハードウェアでは、1.5 * 2^-12の最大相対エラーがあるRCPSS命令を使用できます。

ARM64 ハードウェアでは、単一の Newton-Raphson イテレーションを実行する FRECPE 命令を使用できます。

特殊なサポートがないハードウェアでは、 1.0 / xが返される可能性があります。

適用対象