gamma.js 467 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.gammaDocs = void 0;
  6. var gammaDocs = {
  7. name: 'gamma',
  8. category: 'Probability',
  9. syntax: ['gamma(n)'],
  10. description: 'Compute the gamma function. For small values, the Lanczos approximation is used, and for large values the extended Stirling approximation.',
  11. examples: ['gamma(4)', '3!', 'gamma(1/2)', 'sqrt(pi)'],
  12. seealso: ['factorial']
  13. };
  14. exports.gammaDocs = gammaDocs;