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