Click or drag to resize

PLS2Regression.ExecuteAnalysis Method

Partial least squares (PLS) decomposition of the matrizes X and Y.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static void ExecuteAnalysis(
	IROMatrix<double> _X,
	IROMatrix<double> _Y,
	ref int numFactors,
	IBottomExtensibleMatrix<double> xLoads,
	IBottomExtensibleMatrix<double> yLoads,
	IBottomExtensibleMatrix<double> W,
	IRightExtensibleMatrix<double> V,
	IExtensibleVector<double> PRESS
)

Parameters

_X  IROMatrix<Double>
The X ("spectrum") matrix, centered and preprocessed.
_Y  IROMatrix<Double>
The Y ("concentration") matrix (centered).
numFactors  Int32
Number of factors to calculate.
xLoads  IBottomExtensibleMatrix<Double>
Returns the matrix of eigenvectors of X. Should be initially empty.
yLoads  IBottomExtensibleMatrix<Double>
Returns the matrix of eigenvectors of Y. Should be initially empty.
W  IBottomExtensibleMatrix<Double>
Returns the matrix of weighting values. Should be initially empty.
V  IRightExtensibleMatrix<Double>
Returns the vector of cross products. Should be initially empty.
PRESS  IExtensibleVector<Double>
If not null, the PRESS value of each factor is stored (vertically) here.
See Also