I'm getting the following error while doing the state update in mpc

2 views (last 30 days)
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

Accepted Answer

Emmanouil Tzorakoleftherakis
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 Comments
Sarala Gurijala
Sarala Gurijala on 22 Feb 2023
Thanks sir. I have removed the above mentioned error sir. But I'm unable plot the graph sir. It is showing the error as "The constraints are overly stringent. No feasible solution. Previous optimal sequence will be used. In mpc/mpcmove" Please Suggest me sir
Emmanouil Tzorakoleftherakis
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

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!