Im tring to transform the following minimization problem:
$$\arg \min_{x \in \mathbb{R}^d : Wx=y} \left\|x\right\|_1 $$
into a linear programming problem which is a program with the following form:
$$\max_{w \in \mathbb{R}^d} \langle u,w \rangle $$
subject to
$$ Aw \ge y$$
the linearprog receives:
$$\text{linearprog}(A,u,v)$$
I've already found the first constrain which is :
$ Wx = y $ using the $A=\binom{W}{-W} , v=\binom{y}{-y}$ which gives $Wx \ge y, Wx \le y $
I'm still having hard time to fit the constraints to mininize $L_1$ norm ($\left\|x\right\|_1$).