UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

14 lines (13 loc) 581 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.multinomialDocs = void 0; const multinomialDocs = exports.multinomialDocs = { name: 'multinomial', category: 'Probability', syntax: ['multinomial(A)'], description: 'Multinomial Coefficients compute the number of ways of picking a1, a2, ..., ai unordered outcomes from `n` possibilities. multinomial takes one array of integers as an argument. The following condition must be enforced: every ai > 0.', examples: ['multinomial([1, 2, 1])'], seealso: ['combinations', 'factorial'] };