2014-04-18 19:01:00 -04:00

18 lines
316 B
JavaScript

module.exports = {
'name': 'sech',
'category': 'Trigonometry',
'syntax': [
'sech(x)'
],
'description': 'Compute the hyperbolic secant of x in radians. Defined as 1/cosh(x)',
'examples': [
'sech(2)',
'1 / cosh(2)'
],
'seealso': [
'coth',
'csch',
'cosh'
]
};