|  | SubsetSplit(Int32) Method | 
            Splits this subset into the specified number of equally-sized subsets.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic Subset[] Split(
	int n
)
Public Function Split ( 
	n As Integer
) As Subset()
public:
array<Subset^>^ Split(
	int n
)
member Split : 
        n : int -> Subset[] Parameters
- n  Int32
- The number of subsets into which to split this subset.
Return Value
Subset
            An array of 
n subsets, each containing 
this.Length / n indices.
            
 Exceptions
Exceptions See Also
See Also