How to solve dimension mismatch?
이전 댓글 표시
Hello,
I have a matrix named "X" that firstly starts with 27x2 but then it goes into a while loop and after some calculations the row value and the elements change, sometimes to a greater value than 27 and sometimes a lower value for example: sometimes it becomes 35x2 and sometimes it becomes 12x2, and I keep this as a new matrix "Y" . And when I want to put that Y matrix inside of X, it gives dimension mismatch. Is there a way to solve this, if so I will appreciate your help.
Thanks!
답변 (1개)
Walter Roberson
2019년 11월 8일
S=size(Y);
X(1:S(1),1:S(2)) = Y;
This will extend X if needed, but if the new Y is smaller then only the "upper left" will be changed to Y leaving the rest unchanged.
댓글 수: 2
Iremsu Savas
2019년 11월 8일
Walter Roberson
2019년 11월 8일
You need to define the results that you want in that case. It sounds like you want something different than just X=Y; but we do not know what.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!