MultivariateRegressionCrossValidationIterationFunction Delegate |
Function used for a cross-validation iteration. During cross validation, the original spectral matrix is separated into
a spectral group used for prediction and the remaining calibration spectra.
Namespace: Altaxo.Calc.Regression.MultivariateAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic delegate void CrossValidationIterationFunction(
int[] group,
IMatrix<double> XXRaw,
IMatrix<double> YYRaw,
IMatrix<double> XURaw,
IMatrix<double> YURaw
)
Parameters
- group Int32
- Indices of measurements that are excluded from the analysis (but then used for prediction).
- XXRaw IMatrixDouble
- Remaining calibration spectra (unpreprocessed).
- YYRaw IMatrixDouble
- Corresponding remaining concentration data (unpreprocessed).
- XURaw IMatrixDouble
- Spectra used for prediction (unpreprocessed).
- YURaw IMatrixDouble
- Corresponding concentration data (unpreprocessed).
See Also