simple-squiggle/node_modules/mathjs/lib/cjs/expression/embeddedDocs/function/combinatorics/stirlingS2.js

15 lines
613 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.stirlingS2Docs = void 0;
var stirlingS2Docs = {
name: 'stirlingS2',
category: 'Combinatorics',
syntax: ['stirlingS2(n, k)'],
description: 'he Stirling numbers of the second kind, counts the number of ways to partition a set of n labelled objects into k nonempty unlabelled subsets. `stirlingS2` only takes integer arguments. The following condition must be enforced: k <= n. If n = k or k = 1, then s(n,k) = 1.',
examples: ['stirlingS2(5, 3)'],
seealso: ['bellNumbers']
};
exports.stirlingS2Docs = stirlingS2Docs;