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 ハードウェアでは、1.5 * 2^-12の最大相対エラーがあるRCPSS命令を使用できます。
ARM64 ハードウェアでは、単一の Newton-Raphson イテレーションを実行する FRECPE 命令を使用できます。
特殊なサポートがないハードウェアでは、 1.0 / xが返される可能性があります。