Filter löschen
Filter löschen

Efficiency of "quadprog" in MATLAB

68 Ansichten (letzte 30 Tage)
Trym Gabrielsen
Trym Gabrielsen am 27 Jun. 2024 um 10:12
Beantwortet: Kaustab Pal am 12 Jul. 2024 um 10:35
I need to use a QP solver for an NMPC (with SQP) scheme I am writing in MATLAB.
I am mostly writing everything from scratch, both to learn more about NMPC, and to have more control over the implementation when doing research. However, I don't really feel the need to write my own QP solver, which would probably me way less effecient than modern solvers.
Initially i figured I'd just use quadprog for simplicity, but my supervisor says that this used to be a notoriously slow solver back in the day. I was wondering if this is still the case, or if it has been improved and can compare with other solvers today?
Also, what solvers are fairly efficient and are easy to obtain and use from MATLAB? (as alternatives to quadprog, if it does don't perform well enough)
  2 Kommentare
John D'Errico
John D'Errico am 27 Jun. 2024 um 13:29
Bearbeitet: John D'Errico am 27 Jun. 2024 um 13:29
I would not write it yourself. You would surely do no better, and almost certainly significantly worse. Is it acceptable? You should try it out, as if it is sufficient for your problem, then all is good. If you feel it is a bottleneck, then and only then should you worry about alternatives. Never spend effort to pre-optimize your code.
If and only if you decide you need something faster because it becomes a bottleneck, then you might swap something else in, but at that point, the swap would be simple anyway.
Trym Gabrielsen
Trym Gabrielsen am 27 Jun. 2024 um 15:38
As I said, I will not write my own. I am more curious about how it performs relative to other solvers, f.ex. From the MPC toolbox? And against other non-MATLAB solvers, that are easily available.
I thought I would ask before spending lots of time testing various solvers.
I see you point though, I’ll probably use quadprog for now.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Kaustab Pal
Kaustab Pal am 12 Jul. 2024 um 10:35
I did a quick analysis between three MATLAB solvers: "mpcActiveSetSolver", "mpcInteriorPointOptions", and "quadprog". Utilizing these solvers, I solved the same example problem, which you can access here: Example Problem Link.
The results revealed that in terms of speed, "mpcInteriorPointSolver" outperforms "mpcActiveSetSolver", which, in turn, is faster than "quadprog". This ranking may assist you in selecting the most efficient solver for your NMPC scheme. It's important to note that the solver's speed can also vary based on the specific problem you are addressing. For further details, you can explore more about these solvers here.
Hope this helps

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by