simple-squiggle

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

atan.js (371B)


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