Factors the matrix contained in data into the product WH using an iterative method. The initial values for WH are random.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public virtual void Factor(
	DoubleMatrix V,
	int k
)
Visual Basic (Declaration)
Public Overridable Sub Factor ( _
	V As DoubleMatrix, _
	k As Integer _
)
Visual C++
public:
virtual void Factor(
	DoubleMatrix^ V, 
	int k
)

Parameters

V
Type: CenterSpace.NMath.Core..::.DoubleMatrix
The matrix to be factored.
k
Type: System..::.Int32
The number of columns in W (and rows in H).

See Also