The status is Unbounded and Inaccurate/Solved
Maybe yes, maybe no.
First, try to make sure the input data has good scaling. Then follow the advice at CVXQUAD: How to use CVXQUAD's Pade Approximant instead of CVX's unreliable Successive Approximation for GP mode, log, exp, entr, rel_entr, kl_div, log_det, det_rootn, exponential cone. CVXQUAD's Quantum (Matrix) Entropy & Matrix Log related functions .
Check you input data scaling.
Them follow the advice at https://yalmip.github.io/debuggingunbounded .
Everything depends on the combination of model, input data, and solver.
Do you know what will happen with this problem?
cvx_begin;variable x;minimize(x);cvx_end
It will be declared unbounded.
Do you know what will happen to this problem?
cvx_begin;variable x;minimize(x);x >= 1; cvx_end
It will be solved to optimality.


