Click or drag to resize

MultivariateRegressionPreprocessTargetVariablesForAnalysisInline Method

Preprocess the y values for analysis (mean center; scaling is currently not used).

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static void PreprocessTargetVariablesForAnalysisInline(
	Matrix<double> matrixYRaw_Pre,
	out Vector<double> meanY,
	out Vector<double> scaleY
)

Parameters

matrixYRaw_Pre  MatrixDouble
Matrix of target variables. On entry, each measurement (belonging to a spectrum) represents one row. On return, contains the matrix of preprocessed target variables.
meanY  VectorDouble
On return, contains the mean y value(s).
scaleY  VectorDouble
On return, contains the scale value(s).
See Also