Back to functions

Chi


hyperbolic cosine integral

Calculates the hyperbolic cosine integral of a number.

Usage: nerdamer("Chi(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('Chi(5)').evaluate();
console.log(x.text());
x = nerdamer('Chi(0)').evaluate();
console.log(x.text());
OUTPUT:
Back to functions