Click or drag to resize

MultivariateRegressionAnalyzeFromPreprocessed Method

Creates an analyis from preprocessed spectra and preprocessed concentrations.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void AnalyzeFromPreprocessed(
	IROMatrix<double> matrixXPre,
	IROMatrix<double> matrixYPre,
	int maximalNumberOfFactors
)

Parameters

matrixXPre  IROMatrixDouble
The spectral matrix (each spectrum is a row in the matrix). They must at least be centered.
matrixYPre  IROMatrixDouble
The matrix of concentrations (each experiment is a row in the matrix). They must at least be centered.
maximalNumberOfFactors  Int32
Maximum number of factors for analysis.

Return Value

A regression object, which holds all the loads and weights neccessary for further calculations.
See Also