| NMFConsensusMatrixAlg(DoubleMatrix, IEnumerableString, Int32, Int32) Constructor |
Constructs a NFMConsensusMatrix instance from the given data.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public NMFConsensusMatrix(
DoubleMatrix v,
IEnumerable<string> columnLabels,
int k,
int numberOfRuns
)
Public Sub New (
v As DoubleMatrix,
columnLabels As IEnumerable(Of String),
k As Integer,
numberOfRuns As Integer
)
public:
NMFConsensusMatrix(
DoubleMatrix^ v,
IEnumerable<String^>^ columnLabels,
int k,
int numberOfRuns
)
new :
v : DoubleMatrix *
columnLabels : IEnumerable<string> *
k : int *
numberOfRuns : int -> NMFConsensusMatrix
Parameters
- v DoubleMatrix
- The matrix to factor.
- columnLabels IEnumerableString
- Matrix column labels.
- k Int32
- The order of the NMF factorization.
- numberOfRuns Int32
- The number of clustering runs.
See Also