tan.js 384 B

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