cot.js 364 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.cotDocs = void 0;
  6. var cotDocs = {
  7. name: 'cot',
  8. category: 'Trigonometry',
  9. syntax: ['cot(x)'],
  10. description: 'Compute the cotangent of x in radians. Defined as 1/tan(x)',
  11. examples: ['cot(2)', '1 / tan(2)'],
  12. seealso: ['sec', 'csc', 'tan']
  13. };
  14. exports.cotDocs = cotDocs;