Number.Permutations
Returns the number of permutations.
Syntax
Number.Permutations(
setSize as number,
permutationSize as number
) as number
Remarks
Returns the number of permutations that can be generated from a number of items, setSize
, with a specified permutation size, permutationSize
.
Examples
Example #1
Find the number of permutations from a total of 5 items in groups of 3.
Number.Permutations(5, 3)
Result:
60
Category
Number.Operations