cot.js 238 B

12345678
  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. };