Click or drag to resize

MultivariateRegressionPreprocessTargetVariablesForAnalysis Method

Preprocesses the x and y matrices before usage in multivariate calibrations.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void PreprocessTargetVariablesForAnalysis(
	IROMatrix<double> matrixYRaw,
	out IMatrix<double> matrixYPre,
	out IVector<double> meanY,
	out IVector<double> scaleY
)

Parameters

matrixYRaw  IROMatrixDouble
Matrix of target variables. Each measurement (belonging to a spectrum) represents one row.
matrixYPre  IMatrixDouble
On return, contains the matrix of preprocessed target variables. Same dimensions as matrixYRaw.
meanY  IVectorDouble
On return, contains the mean value of the target variables (mean of all measurements).
scaleY  IVectorDouble
On return, contains the scaling factor for the target variables.
See Also