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