xyosc/vendor/github.com/chewxy/math32/erfc.go

8 lines
103 B
Go
Raw Normal View History

2024-12-21 17:38:26 +01:00
package math32
import "math"
func Erfc(x float32) float32 {
return float32(math.Erfc(float64(x)))
}