docs-v2/content/v2.0/reference/flux/stdlib/math/erf.md

574 B

title description aliases menu weight
math.erf() function The math.erf() function returns the error function of `x`.
/v2.0/reference/flux/functions/math/erf/
v2_0_ref
name parent
math.erf Math
301

The math.erf() function returns the error function of x.

Output data type: Float

import "math"

math.erf(x: 22.6)

// Returns 1.0

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.erf(+Inf) // Returns 1
math.erf(-Inf) // Returns -1
math.erf(NaN)  // Returns NaN