acoth.js 423 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.acothDocs = void 0;
  6. var acothDocs = {
  7. name: 'acoth',
  8. category: 'Trigonometry',
  9. syntax: ['acoth(x)'],
  10. description: 'Calculate the hyperbolic arccotangent of a value, defined as `acoth(x) = (ln((x+1)/x) + ln(x/(x-1))) / 2`.',
  11. examples: ['acoth(2)', 'acoth(0.5)'],
  12. seealso: ['acsch', 'asech']
  13. };
  14. exports.acothDocs = acothDocs;