Created
May 23, 2013 21:02
-
-
Save Zepheus/5639400 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Go-language square root implementation | |
package main | |
import ("fmt") | |
func Sqrt(x float64) float64 { | |
z, precision := 1.0, 2.22e-15 | |
for { | |
z = (z + x/z)/2 | |
if abs(z*z - x) < precision { | |
return z | |
} | |
} | |
} | |
func abs(x float64) float64 { | |
if x < 0 { | |
x = -1.0 * x | |
} | |
return x | |
} | |
func main() { | |
fmt.Println(Sqrt(2)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment