acot.js 367 B

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