atanh.js 401 B

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