2015-02-28 22:02:12 +01:00

16 lines
309 B
JavaScript

module.exports = {
'name': 'acosh',
'category': 'Trigonometry',
'syntax': [
'acosh(x)'
],
'description': 'Calculate the hyperbolic arccos of a value, defined as `acosh(x) = ln(sqrt(x^2 - 1) + x)`.',
'examples': [
'acosh(1.5)'
],
'seealso': [
'cosh',
'asinh',
'atanh'
]
};