Back to functions

erf


error function

Returns the computed value for the error function.

Usage: nerdamer("erf(x)")


Parameters

expression x Returns the appropriate value if possible otherwise it returns the function with the simplified expression

Returns

Expression

EXAMPLES:
var x = nerdamer('erf(x)');
console.log(x.toString());
var y = nerdamer('erf(1)').evaluate();
console.log(y.toString());
OUTPUT:
Back to functions