atanh.js 269 B

12345678
  1. export var atanhDocs = {
  2. name: 'atanh',
  3. category: 'Trigonometry',
  4. syntax: ['atanh(x)'],
  5. description: 'Calculate the hyperbolic arctangent of a value, defined as `atanh(x) = ln((1 + x)/(1 - x)) / 2`.',
  6. examples: ['atanh(0.5)'],
  7. seealso: ['acosh', 'asinh']
  8. };