How to check feasiblity of SOSTOOLs?
Show older comments
Dear all,
I am currently learning SOSTOOLS to compute the region of attraction (ROA) of a nonlinear system. In one step of the procedure, I need to assess the feasibility of an SOS optimization problem.
I would like to confirm whether the following approach is appropriate for checking feasibility in SOSTOOLS:
====================
prog = sossolve(prog);
feas = (prog.solinfo.info.pinf == 0) && ...
(prog.solinfo.info.dinf == 0) && ...
(prog.solinfo.info.numerr <= 2);
========================
So it will return "feas=1" if the problem is feasible
I would greatly appreciate any advice or clarification on this matter.
Thank you very much for your time and support.
Kind regards,
Husni
Accepted Answer
More Answers (0)
Categories
Find more on Problem-Based Optimization Setup in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!