Click or drag to resize

MultivariateRegressionPostprocessTargetVariablesInline(IMatrixDouble, IReadOnlyListDouble, IReadOnlyListDouble) Method

This calculates from the predicted (but still centered) y values the raw y values.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void PostprocessTargetVariablesInline(
	IMatrix<double> matrixYPre_Raw,
	IReadOnlyList<double> meanY,
	IReadOnlyList<double> scaleY
)

Parameters

matrixYPre_Raw  IMatrixDouble
On call, contains the matrix of (centered) y values. On return, contains the uncentered y values.
meanY  IReadOnlyListDouble
Vector of mean y value(s).
scaleY  IReadOnlyListDouble
Vector of y scale value(s).
See Also