simple-squiggle

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

csch.js (386B)


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