how to attach a matrix generated in loop below a matrix with same row size generated in previous iteration?
조회 수: 1 (최근 30일)
이전 댓글 표시
My code is generating a varible with size MxN. I want to attach MxN1 matrix below a MxN2 matrix. So after every loop the variable increases in coloumn.
댓글 수: 0
답변 (1개)
Bjorn Gustavsson
2022년 8월 12일
The "natural" interpretation of below to me would be something like this:
C = [A;B];
But that only works if the number of columns in A and B are the same, that is if
size(A,2) == size(B,2)
But when you write "increases in column" the natural interpretation to me is that you want:
C = [A,B];
which also seem to match what you write about the sizes of the matrices to be concatenated.
HTH
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!