In Matlab, I'm getting an error that I'm not sure about and can't seem to find (from Google searches) any information on.
When I try to run Yalmip's solvesdp:
options = sdpsettings('verbose',2,'warning',1,'showprogress',1,'savesolverinput',1,'savesolveroutput',1,'solver','IPOPT');
sol = solvesdp(constraints,objective,options);
I get...
Error using lmi/subsref (line 44)
LMI #227 not available.
Error in compileinterfacedata>convertsocp2NONLINEAR (line 1232)
z = sdpvar(Fsocp(i));
Error in compileinterfacedata (line 699)
[F,changed] = convertsocp2NONLINEAR(F);
Error in solvesdp (line 241)
[interfacedata,recoverdata,solver,diagnostic,F,Fremoved] =
compileinterfacedata(F,[],logdetStruct,h,options,0,solving_parametric);
Error in RunOptimizer (line 126)
sol = solvesdp(constraints,objective,options);
I've also tried this with Matlab's fmincon solver, and I get the same error. Any one know about this?
Thanks!