How to express the X*X^H in CVX, where X is optimize variable, and X is an M*N matrix, X^H is the conjugate transpose of X

The MATLAB code is as follow:
CVX1

when running the program will report an error:
" Disciplined convex programming error:
Only scalar quadratic forms can be specified in CVX "

So, my question is how to express the form: X*X^H in CVX?
Thank you very much!

You don’t. See my answer at How to realize the trace(A*X*X^h*B^h) in CVX? - #2 by Mark_L_Stone . I.e., you can formulate trace(X*X') as square_pos(norm(X,‘fro’)), but you can't explicitly formulate X*X’` (for general purpose use).

Ok, I get it. Thank you!