mirror of
https://github.com/make-42/xyosc
synced 2025-01-20 03:27:33 +01:00
8 lines
101 B
Go
8 lines
101 B
Go
|
package math32
|
||
|
|
||
|
import "math"
|
||
|
|
||
|
func Erf(x float32) float32 {
|
||
|
return float32(math.Erf(float64(x)))
|
||
|
}
|