simple-squiggle

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

atan.js (242B)


      1 export var atanDocs = {
      2   name: 'atan',
      3   category: 'Trigonometry',
      4   syntax: ['atan(x)'],
      5   description: 'Compute the inverse tangent of a value in radians.',
      6   examples: ['atan(0.5)', 'atan(tan(0.5))'],
      7   seealso: ['tan', 'acos', 'asin']
      8 };