WorksheetAnalysisCalculatePredictedAndResidual Method |
Calculates and optionally stores predicted values and residuals.
Namespace: Altaxo.Calc.Regression.MultivariateAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic virtual void CalculatePredictedAndResidual(
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