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' ] };