objective = cvxpy.Minimize(cvxpy.norm(vx, 1))
constraints = [A@vx == b]
where the array A gets huge as it is the kronecker product of two arrays and therefore I get memory errors as I try to get to bigger dimensions.
I was wondering if there is any way I could use cvxpy in order to use the array A without declaring it as a variable before.
Thank you in advance!
J.