2014-05-16 22:24:07 +02:00

17 lines
277 B
JavaScript

module.exports = {
'name': 'cosh',
'category': 'Trigonometry',
'syntax': [
'cosh(x)'
],
'description': 'Compute the hyperbolic cosine of x in radians.',
'examples': [
'cosh(0.5)'
],
'seealso': [
'sinh',
'tanh',
'coth'
]
};