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