acoth.js 291 B

12345678
  1. export var acothDocs = {
  2. name: 'acoth',
  3. category: 'Trigonometry',
  4. syntax: ['acoth(x)'],
  5. description: 'Calculate the hyperbolic arccotangent of a value, defined as `acoth(x) = (ln((x+1)/x) + ln(x/(x-1))) / 2`.',
  6. examples: ['acoth(2)', 'acoth(0.5)'],
  7. seealso: ['acsch', 'asech']
  8. };