csch.js 257 B

12345678
  1. export var cschDocs = {
  2. name: 'csch',
  3. category: 'Trigonometry',
  4. syntax: ['csch(x)'],
  5. description: 'Compute the hyperbolic cosecant of x in radians. Defined as 1/sinh(x)',
  6. examples: ['csch(2)', '1 / sinh(2)'],
  7. seealso: ['sech', 'coth', 'sinh']
  8. };