go/src/math/erfinv.go

const a0

const a1

const a2

const a3

const a4

const a5

const a6

const a7

const b0

const b1

const b2

const b3

const b4

const b5

const b6

const b7

const c0

const c1

const c2

const c3

const c4

const c5

const c6

const c7

const d0

const d1

const d2

const d3

const d4

const d5

const d6

const d7

const e0

const e1

const e2

const e3

const e4

const e5

const e6

const e7

const f0

const f1

const f2

const f3

const f4

const f5

const f6

const f7

// Erfinv returns the inverse error function of x.
//
// Special cases are:
//
//	Erfinv(1) = +Inf
//	Erfinv(-1) = -Inf
//	Erfinv(x) = NaN if x < -1 or x > 1
//	Erfinv(NaN) = NaN
func Erfinv(x float64) float64 {}

// Erfcinv returns the inverse of [Erfc](x).
//
// Special cases are:
//
//	Erfcinv(0) = +Inf
//	Erfcinv(2) = -Inf
//	Erfcinv(x) = NaN if x < 0 or x > 2
//	Erfcinv(NaN) = NaN
func Erfcinv(x float64) float64 {}