Click or drag to resize

PCRRegressionCalculatePRESS(IROMatrixDouble, IROMatrixDouble, Int32, IReadOnlyListDouble) Method

Calculates PRESS values for the y loadings using the provided score matrix.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static void CalculatePRESS(
	IROMatrix<double> yLoads,
	IROMatrix<double> xScores,
	int numberOfFactors,
	out IReadOnlyList<double> press
)

Parameters

yLoads  IROMatrixDouble
Y loadings (centered target variables).
xScores  IROMatrixDouble
Score matrix.
numberOfFactors  Int32
Number of factors to calculate.
press  IReadOnlyListDouble
On return, contains the PRESS values (length numberOfFactors + 1).
See Also