Hi Andrea,
Thank you for the suggestion. I performed eigen decomposition using matlab and found that around 200 eigen values are very small and negative.
By rounding these values to zero and a re-computing the Q matrix, it still did not pass the convexity check.
On the other hand, I tried tweaking the MSK_DPAR_CHECK_CONVEXITY_REL_TOL parameter, but still could not pass the convexity check.
Am I doing this rightly? Below is the how I used to tweak this parameter.
Code:
//define prob.
param=[];
param.MSK_DPAR_CHECK_CONVEXITY_REL_TOL = 100;
[r,res] = mosekopt('minimize' ,prob, param);
//