I have implemented a Least Squares Optimization with L1-Norm Regularization for the problem.A link to such algorithms is https://www.cs.ubc.ca/~schmidtm/Documents/2005_Notes_Lasso.pdf
The paper discuss the problem of solving: minimize $(norm(A*x-b)+norm(x,1))$
How can we solve the problem if the matrix $A$ and vector $b$ is complex numbers? In other words is the minimization problem different for complex numbers? How can we change the procedure for complex numbers?