|  | Subset(Subset) Constructor | 
            Construct a Subset instance from the given array of Subsets.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic Subset(
	Subset[] subsets
)
Public Sub New ( 
	subsets As Subset()
)
public:
Subset(
	array<Subset^>^ subsets
)
new : 
        subsets : Subset[] -> SubsetParameters
- subsets  Subset
- An array of Subsets.
 Remarks
Remarks
            The Subsets are simply concatenated. To create a sorted Subset of the 
            unique indices, call ToUnique() on the constructed Subset.
            
 See Also
See Also