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

21 lines
377 B
JavaScript

module.exports = {
'name': 'cosh',
'category': 'Trigonometry',
'syntax': [
'cosh(x)'
],
'description': 'Compute the hyperbolic cosine of x in radians.',
'examples': [
'cosh(2)',
'cosh(pi / 4) ^ 2',
'cosh(180 deg)',
'cosh(60 deg)',
'sinh(0.2)^2 + cosh(0.2)^2'
],
'seealso': [
'sinh',
'tanh',
'coth'
]
};