Error using ==> vertcat CAT arguments dimensions are not consistent.

4 views (last 30 days)
I am defining A matrix in State Space Blockas;
[0 1.0 0 0 0 0; -4.7059 -0.0882 0 0 1.3588 0;
0 0 0 1.0 0 0 ; 0 0 0 -5.0 1.6170 4.5 ;
0 0 0 0 -0.9091 0;0 0 0 0 0 -1.0];
Note: This is a continuous straight entry.
I get this error:
Error evaluating parameter 'A' in 'Linear_PID_MODEL/Subsystem/State-Space': Error using ==> vertcat CAT arguments dimensions are not consistent.
Please Help

Accepted Answer

Matt J
Matt J on 16 Dec 2013
Somewhere, you are doing something like this:
>> [rand(2); rand(3)]
Error using vertcat
Dimensions of matrices being concatenated are not consistent.
  4 Comments
Matt J
Matt J on 11 May 2018
Stop the code at the line where the error is occuring (e.g. using DBSTOP). Then check the sizes of the matrices being concatenated at that line.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!