Least Distance Problem
Solve least distance programming: find x satisfying u%*%x >= co
and s.t. min(||x||) by passing to nnls (non negative least square) problem.
ldp(u, co, rcond = 1e+10)
u
: a dense matrix of inequality constraintsco
: a right hand side vector of inequality constraintsrcond
: maximal condition number for determining rank deficient matrixsolution vector or NULL if constraints are unfeasible