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