Back to functions

Ei


Exponential Integral

Calculates the exponential integral of a number.

Usage: nerdamer("Ei(number)")


Parameters

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

Returns

Expression

EXAMPLES:
var x = nerdamer('Ei(5)').evaluate();
console.log(x.text());
x = nerdamer('Ei(3)').evaluate();
console.log(x.text());
x = nerdamer('Ei(0)').evaluate();
console.log(x.text());
OUTPUT:
Back to functions