Click or drag to resize

WorksheetAnalysisCalculateCrossPredictedAndResidual Method

Calculates and optionally stores cross-predicted values and residuals.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public virtual void CalculateCrossPredictedAndResidual(
	DataTable table,
	int whichY,
	int numberOfFactors,
	bool saveYPredicted,
	bool saveYResidual,
	bool saveXResidual
)

Parameters

table  DataTable
The table that stores the calibration model.
whichY  Int32
The dependent-variable index.
numberOfFactors  Int32
The number of factors used for the calculation.
saveYPredicted  Boolean
If set to true, stores the predicted dependent values.
saveYResidual  Boolean
If set to true, stores the dependent-variable residuals.
saveXResidual  Boolean
If set to true, stores the spectral residuals.
See Also