Compute Complementary Error Function
Examples in
Go
package main
import (
"fmt"
"math"
)
func main() {
c := math.Erfc(1.0)
fmt.Printf("%.6f", c)
}