Method | Description | |
---|---|---|
NonnegativeMatrixFactorization ( double value, int r ) : System |
Initializes a new instance of the NMF algorithm
|
|
NonnegativeMatrixFactorization ( double value, int r, int maxiter ) : System |
Initializes a new instance of the NMF algorithm
|
Method | Description | |
---|---|---|
compute ( int maxiter ) : void |
Performs NMF using the multiplicative method At the end of the computation H contains the projected data and W contains the weights. The multiplicative method is the simplest factorization method. |
public NonnegativeMatrixFactorization ( double value, int r ) : System | ||
value | double | The input data matrix (must be positive). |
r | int | The reduced dimension. |
return | System |
public NonnegativeMatrixFactorization ( double value, int r, int maxiter ) : System | ||
value | double | The input data matrix (must be positive). |
r | int | The reduced dimension. |
maxiter | int | The number of iterations to perform. |
return | System |