how to concatenation matrices
古いコメントを表示
I tried to execute this which is part of a program i got this error message on the Q1 line(2nd line):
??? Error using ==> vertcat
CAT arguments dimensions are not consistent.Please any hint on what to do to correct it?
P1 =[P111 P112; P121 P122];
Q1=[Q111 Q112; Q121 Q122];
V=[V11 V12 ; V21 V22];
Q2=[Q211 Q212 ; Q221 Q222];
P2 = [P211 P212; P221 P222];
W = (P1*Q1*V*Q2*P2);
8 件のコメント
Andrew Newell
2015 年 1 月 9 日
Are the arguments like P111 all scalars?
dpb
2015 年 1 月 9 日
Clearly not; otherwise there would be no size mismatch.
And when OP gets taht sorted out, then undoubtedly there will be a needed "dot" operator on the last line.
Amos
2015 年 1 月 9 日
Segun, in order to see what is going on, we need you to add the part of your code where Q111, Q112, Q121 and Q122 are defined, or, alternatively, check the dimension of these sub matrices by the command size(Q111) and so on.
segun
2015 年 1 月 11 日
Image Analyst
2015 年 1 月 11 日
Did you see my answer about learning how to use the "whos" command and how to use the debugger??? Clearly everything is not 2-by-2 or it wouldn't give that error. And since you won't give us the complete code, like how the P111 etc. are created, you're on your own.
Image Analyst
2015 年 1 月 13 日
It's not the whole code. Why do you make it difficult for us to help you? Please read this. The code is not formatted. Once I fixed that, there was an extra end in there. Once I fixed that, it said f was not define (a different error than you're asking about). After that I gave up.
回答 (1 件)
Image Analyst
2015 年 1 月 10 日
0 投票
You are kidding me. Don't tell me you've been working on this since last July and still don't have a solution that works yet. http://www.mathworks.com/matlabcentral/answers/141425-syntax-to-multiply-two-by-two-matrices-with-zeros-in-it-with-numbers
Why not just learn how to debug http://blogs.mathworks.com/videos/2012/07/03/debugging-in-matlab/, or, worst case, just put a bunch of "whos" commands in there to find out what the rows and columns of all your arrays are. If you stitch together horizontally, they must have the same number of rows. If you stitch together vertically, they must have the same number of rows.
1 件のコメント
Stephen23
2015 年 1 月 10 日
Small correction: "If you stitch together horizontally, they must have the same number of rows. If you stitch together vertically, they must have the same number of columns".
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!