Construct a Subset instance from the given array of Subsets.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public Subset(
	Subset[] subsets
)
Visual Basic (Declaration)
Public Sub New ( _
	subsets As Subset() _
)
Visual C++
public:
Subset(
	array<Subset^>^ subsets
)

Parameters

subsets
Type: array< CenterSpace.NMath.Stats..::.Subset >[]()[]
An array of Subsets.

Remarks

The Subsets are simply concatenated. To created a sorted Subset of the unique indices, call ToUnique() on the constructed Subset.

See Also