Get cross validation testing subsets from the given partial least squares data.

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

Syntax

C#
Subset[] GetTestingSubsets(
	DoubleMatrix independentData,
	DoubleMatrix dependentData
)
Visual Basic (Declaration)
Function GetTestingSubsets ( _
	independentData As DoubleMatrix, _
	dependentData As DoubleMatrix _
) As Subset()
Visual C++
array<Subset^>^ GetTestingSubsets(
	DoubleMatrix^ independentData, 
	DoubleMatrix^ dependentData
)

Parameters

independentData
Type: CenterSpace.NMath.Core..::.DoubleMatrix
The independent partial least squares data.
dependentData
Type: CenterSpace.NMath.Core..::.DoubleMatrix
The dependent partial least squares data.

Return Value

Array of row index subsets.

Remarks

The independent and dependent matrices should have the same number of rows as the number of samples.

See Also