Click or drag to resize

CombinatoricsCombinations Method

Count the number of possible combinations without repetition. The order does not matter and each object can be chosen only once.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double Combinations(
	int n,
	int k
)

Parameters

n  Int32
Number of elements in the set.
k  Int32
Number of elements to choose from the set. Each element is chosen at most once.

Return Value

Double
Maximum number of combinations.
See Also