Click or drag to resize

PCRRegressionGetPredictionScoreMatrix Method

Calculates the prediction-score matrix used to map spectra to predicted target variables.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static void GetPredictionScoreMatrix(
	IROMatrix<double> xLoads,
	IROMatrix<double> yLoads,
	IROMatrix<double> xScores,
	IReadOnlyList<double> crossProduct,
	int numberOfFactors,
	IMatrix<double> predictionScores
)

Parameters

xLoads  IROMatrixDouble
X loadings.
yLoads  IROMatrixDouble
Y loadings.
xScores  IROMatrixDouble
X scores.
crossProduct  IReadOnlyListDouble
Cross-product vector (singular values).
numberOfFactors  Int32
Number of factors to use.
predictionScores  IMatrixDouble
Matrix that receives the prediction scores.
See Also