tanh.js 368 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.tanhDocs = void 0;
  6. var tanhDocs = {
  7. name: 'tanh',
  8. category: 'Trigonometry',
  9. syntax: ['tanh(x)'],
  10. description: 'Compute the hyperbolic tangent of x in radians.',
  11. examples: ['tanh(0.5)', 'sinh(0.5) / cosh(0.5)'],
  12. seealso: ['sinh', 'cosh']
  13. };
  14. exports.tanhDocs = tanhDocs;