simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

cot.js (238B)


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