Austin Schuh | 9049e20 | 2022-02-20 17:34:16 -0800 | [diff] [blame] | 1 | YALMIP |
2 | ====== | ||||
3 | |||||
4 | `YALMIP <https://yalmip.github.io/>`_ supports the OSQP solver. You can easily define problems in high-level format and then specify OSQP by simply setting | ||||
5 | |||||
6 | .. code:: matlab | ||||
7 | |||||
8 | options = sdpsettings('solver', 'osqp', 'osqp.max_iter', 2000); | ||||
9 | |||||
10 | |||||
11 | where we set the :code:`max_iter` option to :code:`2000`. |