csch.js 386 B

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