erfc.go 103 B

1234567
  1. package math32
  2. import "math"
  3. func Erfc(x float32) float32 {
  4. return float32(math.Erfc(float64(x)))
  5. }