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