atan.js 242 B

12345678
  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. };