the matrix to be factored
the number of iterations before checking the termination condition
factor the m-by-n matrix 'v' in to two factors: an m-by-r and r-by-n matrix
Factor the original matrix 'v' into left 'w' and right 'h' matrices by iteratively calling the 'update' method until the difference between 'v' and its approximation 'vv = w * h' is sufficiently small.
factor the m-by-n matrix 'v' in to two factors: an m-by-r and r-by-n matrix
The
NMFactorization
class factors a matrix 'v' into two non negative matrices 'w' and 'h' such that v = wh approximately.http://en.wikipedia.org/wiki/Non-negative_matrix_factorization