|
NonnegativeMatrixFactorization Constructor (Double, Int32, Int32)
|
Initializes a new instance of the NMF algorithm
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public NonnegativeMatrixFactorization(
double[,] value,
int r,
int maxiter
)
Public Sub New (
value As Double(,),
r As Integer,
maxiter As Integer
)
Request Example
View SourceParameters
- value
- Type: SystemDouble
The input data matrix (must be positive). - r
- Type: SystemInt32
The reduced dimension. - maxiter
- Type: SystemInt32
The number of iterations to perform.
See Also