I would like to minimise a function, with multiple constraints:
$$ \frac{1}{2} \|y-Ax\|_2^2 + \beta \|z\|_1 $$
subject to
$$ Bx = 0 $$ and $$ x - z = 0 $$
In my case $(B+I)$ is not a valid matrix.
Do I just form the augmented Lagrangian as:
$$ L_{\rho} = \frac{1}{2} \|y-Ax\|_2^2 + \beta \|z\|_1 + \theta^T(x-z) + \frac{\rho}{2}\|x-z\| + \nu^T(Bz) + \frac{\rho}{2}\|Bz\| $$
?