필터 지우기
필터 지우기

Efficiency of "quadprog" in MATLAB

조회 수: 69 (최근 30일)
Trym Gabrielsen
Trym Gabrielsen 2024년 6월 27일 10:12
답변: Kaustab Pal 2024년 7월 12일 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
John D'Errico
John D'Errico 2024년 6월 27일 13:29
편집: John D'Errico 2024년 6월 27일 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 2024년 6월 27일 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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Kaustab Pal
Kaustab Pal 2024년 7월 12일 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

카테고리

Help CenterFile Exchange에서 Controller Creation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by