simple-squiggle

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

tan.js (384B)


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