acsch.js 404 B

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