I'm getting the following error while doing the state update in mpc
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sarala Gurijala
am 22 Feb. 2023
Kommentiert: Emmanouil Tzorakoleftherakis
am 22 Feb. 2023

I'm applying mpc for 2input, 1output system with 2states. and I'm unable to make the system state update.
For the above code I'm getting the error as
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix
matches the number of rows in the second matrix. To perform elementwise multiplication, use '.*'.
Error in Bstwdmpcmov (line 75)
x = A*x + B1(:,1)*u;
please let me know, which corrections are needed..
thank you
0 Kommentare
Akzeptierte Antwort
Emmanouil Tzorakoleftherakis
am 22 Feb. 2023
Looks like the error is quite descriptive here, please check the dimensions of A, x, u, and B1 maybe by using a break point to see where the dimension mismatch is.
2 Kommentare
Emmanouil Tzorakoleftherakis
am 22 Feb. 2023
Since this is a separate question, ideally it should be on a new post for discoverability. In any case, the error in this case is also pretty helpful. The optimization problem you are asking MPC to solve becomes infeasible. Try again by relaxing the constraints or making them soft
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Controller Creation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!