csc.js 363 B

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