本文实例讲述了go语言实现sqrt的方法。分享给大家供大家参考。具体实现方法如下:
代码如下:package mymath
import “math”
func InvSqrt(x float32) float32 {
var xhalf float32 = 0.5*x // get bits for floating VALUE
i := math.Float32bits(x) // gives initial guess y0
i = 0x5f375a86 – (i>>1) // convert bits BACK to float
x = math.F