= private = protected
erf(p1)
Calculates the error function of x.
Domain: (-INFINITY, INFINITY)
Codomain: (-1, 1)
Math.erf(0) #=> 0.0
static VALUE math_erf(VALUE obj, VALUE x) { Need_Float(x); return DBL2NUM(erf(RFLOAT_VALUE(x))); }