numCombinations¶
Purpose¶
Computes number of combinations of n things taken k at a time.
Format¶
-
y =
numCombinations(n, k)¶ Parameters: - n (scalar) –
- k (scalar) –
Returns: y (scalar) – number of combinations of n things take k at a time.
Remarks¶
To calculate all of the combinations, use the function combinate().
See also
Functions combinate(), combinated()