simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

combinations.js (301B)


      1 export var combinationsDocs = {
      2   name: 'combinations',
      3   category: 'Probability',
      4   syntax: ['combinations(n, k)'],
      5   description: 'Compute the number of combinations of n items taken k at a time',
      6   examples: ['combinations(7, 5)'],
      7   seealso: ['combinationsWithRep', 'permutations', 'factorial']
      8 };