simple-squiggle

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

asinh.js (396B)


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