When solving a linear programming problem in MATLAB using linprog of the form
$$ \min c^T x $$
subject to
$$ Ax \leq b, \; \left\| x \right\|_{1} = 1 $$
if we need to enforce the additional constraint that $L_1$ norm of $x$ is $1$, or $\|x\|_1=1$, how can this be converted into a set of inequations of the above form so that the trivial solution $x=0$ can be avoided?
Unfortunately, this problem cannot be formulated as an LP, since the constraint $\| x \|_{1}=1$ describes a non-convex set and the feasible set of linear programming problem is always a convex set.