Click or drag to resize

NMFClusteringAlgFactor(DoubleMatrix, Int32) Method

Performs the NMF V ~ WH using random initial values for W and H.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public bool Factor(
	DoubleMatrix v,
	int k
)

Parameters

v  DoubleMatrix
Matrix to factor.
k  Int32
The rank of the factorization which is the number of columns in H.

Return Value

Boolean
True if the algorithm converged.
Exceptions
ExceptionCondition
ArgumentExceptionThrown if k >= the number of columns in V.
See Also