simple-squiggle

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

atanh.js (401B)


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