Back to functions

sech


hyperbolic secant

This function will return the hyperbolic secant

Usage: nerdamer("sech(x)")


Parameters

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

Returns

Expression

EXAMPLES:
var r = nerdamer('sech(pi)').evaluate();
console.log(r.toString());
var t = nerdamer('sech(x)')
console.log(t.toString());
var u = nerdamer('sech(pi/4)').evaluate()
console.log(u.toString());
OUTPUT:
Back to functions