MathF.ReciprocalSqrtEstimate(Single) 方法   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定数字的倒数平方根的估计值。
public:
 static float ReciprocalSqrtEstimate(float x);
	public static float ReciprocalSqrtEstimate(float x);
	static member ReciprocalSqrtEstimate : single -> single
	Public Shared Function ReciprocalSqrtEstimate (x As Single) As Single
	参数
- x
 - Single
 
要估计其倒数平方根的数字。
返回
倒数平方根 x的估计值。
注解
在 x86/x64 硬件上, RSQRTSS 这可能使用具有最大相对误差的 1.5 * 2^-12指令。
在 ARM64 硬件上, FRSQRTE 这可能使用指令来执行单个Newton-Raphson迭代。
在没有专用支持的硬件上,这可能只返回 1.0 / Sqrt(x)。