volnmf_simplex_row
finds non-negative matrix C
that minimizes the objective ||X-C*R||^2
under constraints that rows of C equal to 1 using per-row quadratic programming.
volnmf_simplex_row(X, R, C.prev = NULL, meq = 1)
Numeric Matrices. Matrices involved in the objective function.
Numeric Matrices. Matrices involved in the objective function.
Numeric Matrices. Matrices involved in the objective function. Matrix C.prev
serves as initialization. (default=NULL)
An integer 0 or 1. Require equality (meq=1
) or inequality (meq=0
) constratint on rows (by default 1).
An updated matrix C
.