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