atan.js 371 B

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