Create 'Mixed Norm'

Hi,
how i can create this kind of “mixed norm”?

cvx_begin

variable X(xn,xm);
minimize('????????');
A'*X == B';

cvx_end

variable X(xn,xm)
Mixed_norm = sum(norms(X,q,2))    

This is equivalent to:

variable X(xn,xm)
Mixed_norm = 0
 for i=1:xn
    Mixed_norm = Mixed_norm + norm(X(i,:),q)
 end

Of course, q must be >= 1.

1 Like

thank you very much! :slight_smile: