sech.js 255 B

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