mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
21 lines
377 B
JavaScript
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'
|
|
]
|
|
};
|