sinh.js 340 B

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