coth.js 366 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.cothDocs = void 0;
  6. var cothDocs = {
  7. name: 'coth',
  8. category: 'Trigonometry',
  9. syntax: ['coth(x)'],
  10. description: 'Compute the hyperbolic cotangent of x in radians.',
  11. examples: ['coth(2)', '1 / tanh(2)'],
  12. seealso: ['sech', 'csch', 'tanh']
  13. };
  14. exports.cothDocs = cothDocs;