asinh.js 396 B

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