MultivariateRegressionPredictYFromRaw Method |
Predicts y values from raw (unpreprocessed) spectra.
Namespace: Altaxo.Calc.Regression.MultivariateAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void PredictYFromRaw(
double[] xOfXRaw,
IMatrix<double> XURaw,
int numberOfFactors,
IMatrix<double> predictedYRaw
)
Parameters
- xOfXRaw Double
- The x-values (wavelength, frequency etc.) of the spectra (needed for preprocessing).
- XURaw IMatrixDouble
- Matrix of spectra used for prediction (number of spectra, number of wavelengths).
- numberOfFactors Int32
- Number of factors used for prediction.
- predictedYRaw IMatrixDouble
- In return, holds the predicted y values. You have to provide a matrix of
dimensions (number of spectra, number of y).
See Also