Click or drag to resize

WorksheetAnalysisExecuteAnalysis(IMatrixDouble, IMatrixDouble, DimensionReductionAndRegressionOptions, DataTable, IReadOnlyListDouble) Method

Execute an analysis and stores the result in the provided table.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual void ExecuteAnalysis(
	IMatrix<double> matrixX,
	IMatrix<double> matrixY,
	DimensionReductionAndRegressionOptions options,
	DataTable table,
	out IReadOnlyList<double> press
)

Parameters

matrixX  IMatrixDouble
The matrix of spectra (horizontal oriented), centered and preprocessed.
matrixY  IMatrixDouble
The matrix of concentrations, centered.
options  DimensionReductionAndRegressionOptions
Information how to perform the analysis.
table  DataTable
The table where to store the results to.
press  IReadOnlyListDouble
On return, gives a vector holding the PRESS values of the analysis.
See Also