simple-squiggle

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

tanh.js (368B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.tanhDocs = void 0;
      7 var tanhDocs = {
      8   name: 'tanh',
      9   category: 'Trigonometry',
     10   syntax: ['tanh(x)'],
     11   description: 'Compute the hyperbolic tangent of x in radians.',
     12   examples: ['tanh(0.5)', 'sinh(0.5) / cosh(0.5)'],
     13   seealso: ['sinh', 'cosh']
     14 };
     15 exports.tanhDocs = tanhDocs;