Click or drag to resize

CombinatoricsGenerateCombination(Int32, Random) Method

Generate a random combination, without repetition, by randomly selecting some of N elements.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool[] GenerateCombination(
	int n,
	Random randomSource = null
)

Parameters

n  Int32
Number of elements in the set.
randomSource  Random  (Optional)
The random number generator to use. Optional; the default random source will be used if null.

Return Value

Boolean
Boolean mask array of length N, for each item true if it is selected.
See Also