Click or drag to resize

NonnegativeMatrixFactorizationBaseFactorizeOneTrial Method

Factorizes a non-negative matrix V into non-negative factors W and H.

Namespace: Altaxo.Calc.LinearAlgebra.Double.Factorization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public abstract (Matrix<double> W, Matrix<double> H) FactorizeOneTrial(
	Matrix<double> V,
	int rank
)

Parameters

V  MatrixDouble
The input matrix to factorize.
rank  Int32
The factorization rank.

Return Value

ValueTupleMatrixDouble, MatrixDouble
A tuple containing the factors W and H.
See Also