  | SubsetGetGroupings(Factor, Factor, Factor) Method | 
            Returns a two-dimensional jagged array of subsets containing the indices for
            each combination of levels in the three given factors.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static Subset[,,] GetGroupings(
	Factor f1,
	Factor f2,
	Factor f3
)
Public Shared Function GetGroupings ( 
	f1 As Factor,
	f2 As Factor,
	f3 As Factor
) As Subset(,,)
public:
static array<Subset^,3>^ GetGroupings(
	Factor^ f1, 
	Factor^ f2, 
	Factor^ f3
)
static member GetGroupings : 
        f1 : Factor * 
        f2 : Factor * 
        f3 : Factor -> Subset[,,] Parameters
- f1  Factor
 - A factor.
 - f2  Factor
 - A factor.
 - f3  Factor
 - A factor.
 
Return Value
SubsetA two-dimensional jagged array of subsets containing the indices for
            each combination of levels in the three given factors.
See Also