MultivariateRegressionPreprocessTargetVariablesForAnalysisInline Method |
Preprocess the y values for analysis (mean center, scale currently not used).
Namespace: Altaxo.Calc.Regression.MultivariateAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void PreprocessTargetVariablesForAnalysisInline(
IMatrix<double> matrixYRaw_Pre,
out IVector<double> meanY,
out IVector<double> scaleY
)
Parameters
- matrixYRaw_Pre IMatrixDouble
- Matrix of target variables. On calling, each measurement (belonging to a spectrum) represents one row.
On return, contains the matrix of preprocessed target variables.
- meanY IVectorDouble
- On return, contains the mean y value(s).
- scaleY IVectorDouble
- On return, contains the scale value(s).
See Also