Click or drag to resize

DimensionReductionByFactorizationResult Constructor

Initializes a new instance of the DimensionReductionByFactorizationResult record.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public DimensionReductionByFactorizationResult(
	IROMatrix<double> factors,
	IROMatrix<double> loads,
	IROMatrix<double> residualVariances,
	IReadOnlyCollection<double> meanOfProcessData
)

Parameters

factors  IROMatrixDouble
The factor scores.
loads  IROMatrixDouble
The loadings.
residualVariances  IROMatrixDouble
Residual variances per factor, or null if not available..
meanOfProcessData  IReadOnlyCollectionDouble
Mean values used for preprocessing or centering of the process data, or null if not available.
See Also