Back to functions

asec


arcsecant

Returns the inverse of sec in radians.

Usage: nerdamer("asec(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('asec(11)');
console.log(r.toString());
var t = nerdamer('asec(-21)')
console.log(t.toString());
OUTPUT:
Back to functions