csc.js 237 B

12345678
  1. export var cscDocs = {
  2. name: 'csc',
  3. category: 'Trigonometry',
  4. syntax: ['csc(x)'],
  5. description: 'Compute the cosecant of x in radians. Defined as 1/sin(x)',
  6. examples: ['csc(2)', '1 / sin(2)'],
  7. seealso: ['sec', 'cot', 'sin']
  8. };