Constructs a NFMConsensusMatrix instance from the given data.

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

Syntax

C#
public NMFConsensusMatrix(
	DoubleMatrix v,
	IEnumerable<string> columnLabels,
	int k,
	int numberOfRuns
)
Visual Basic (Declaration)
Public Sub New ( _
	v As DoubleMatrix, _
	columnLabels As IEnumerable(Of String), _
	k As Integer, _
	numberOfRuns As Integer _
)
Visual C++
public:
NMFConsensusMatrix(
	DoubleMatrix^ v, 
	IEnumerable<String^>^ columnLabels, 
	int k, 
	int numberOfRuns
)

Parameters

v
Type: CenterSpace.NMath.Core..::.DoubleMatrix
The matrix to factor.
columnLabels
Type: System.Collections.Generic..::.IEnumerable<(Of <(String>)>)
Matrix column labels.
k
Type: System..::.Int32
The order of the NMF factorization.
numberOfRuns
Type: System..::.Int32
The number of clustering runs.

See Also