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