mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
18 lines
318 B
JavaScript
18 lines
318 B
JavaScript
module.exports = {
|
|
'name': 'csch',
|
|
'category': 'Trigonometry',
|
|
'syntax': [
|
|
'csch(x)'
|
|
],
|
|
'description': 'Compute the hyperbolic cosecant of x in radians. Defined as 1/sinh(x)',
|
|
'examples': [
|
|
'csch(2)',
|
|
'1 / sinh(2)'
|
|
],
|
|
'seealso': [
|
|
'sech',
|
|
'coth',
|
|
'sinh'
|
|
]
|
|
};
|