simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

asinh.js (264B)


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