Hi everyone,
I'm solving an optimization problem using ECOS (solver) and Yalmip (parser).
If I would like to solve the same problem by directly using ECOS in Matlab, I would have to use this code:
[x,y,info,s,z] = ecos(c,G,h,dims,A,b,opts)
Since Yalmip is wonderful and parses directly for me the entire model written in Yalmip in a way that ECOS understands, I do not need to know the variables/vector/matrices values of "c,G,h,dims,A,b,opts".
My question is: is there a way how I can access these values, i.e. is there a way to display/get/save the variables/vector/matrices "c,G,h,dims,A,b,opts" of my optimization problem?
Thank you very much for your help and time!
Camillo