Optimal value is Inf, I need help

this is one part of my code, the optimal solution X and epxir is NAN

cvx_begin sdp
variable X(Nt,Nt) hermitian semidefinite
variable epxir
maximize (real(trace(AX)+epxirB))
subject to
real(trace(FX))+epxirsigma_p<=epxirE/kama_p;
real(trace(C
X))+epxir*D==1;
X== hermitian_semidefinite(Nt);
epxir>=0;
cvx_end

Information the cvx solver give:
Status: Unbounded
Optimal value (cvx_optval): +Inf

This applies to CVX as well https://yalmip.github.io/debuggingunbounded/

ok, nice! thank you!