How to combine multiple nx1 size of matrix into one matrix
조회 수: 14 (최근 30일)
이전 댓글 표시
As topic mentioned, i want to combine a matrix from many nx1 size matrix, i would like to have a script
Many Thnkas, Alex
댓글 수: 3
tran thang
2015년 10월 10일
Hi! You can reference my code! Good lucky! >> a{1} = [1 1 1;1 1 1]; >> a{1}
ans =
1 1 1
1 1 1
>> a{2} = [2 2 2;2 2 2]; >> a{3} = [3 3 3]; >> a{4} = [4 4 4;4 4 4;4 4 4]; >> a{5} = [5 5 5;5 5 5]; >> A = vertcat(a{:})
A =
1 1 1
1 1 1
2 2 2
2 2 2
3 3 3
4 4 4
4 4 4
4 4 4
5 5 5
5 5 5
채택된 답변
Matt J
2014년 8월 12일
could you plz exlpain more about vertcat(matrices{:}); by showing an example.
>> matrices={[1,2;3 4],[5,6;7,8]};
>> vertcat(matrices{:})
ans =
1 2
3 4
5 6
7 8
댓글 수: 6
Michael Haderlein
2014년 8월 12일
The first step to fix it is to show the code which is throwing this error ;-)
추가 답변 (3개)
Azzi Abdelmalek
2014년 8월 12일
편집: Azzi Abdelmalek
2014년 8월 12일
You mean concatenation
[A;B]
Read the documentation http://www.mathworks.com/help/matlab/math/creating-and-concatenating-matrices.html#f1-85019
댓글 수: 0
Joakim Magnusson
2014년 8월 12일
편집: Joakim Magnusson
2014년 8월 12일
Where do you have your matrices? If you can get them into cell arrays like this:
matrices = cell(1,2);
matrices{1} = A;
matrices{2} = B;
C = [];
Then you could do like this:
for i = 1:size(matrices,2)
C = [C ;cell2mat(matrices(i))]
end
I'm not sure how you want to combine your matrices but hope this was at least a little helpful.
댓글 수: 4
Michael Haderlein
2014년 8월 12일
Thanks @Matt, I didn't use cell2mat a lot, so I didn't think about it too much. Your solution is very elegant.
Joakim Magnusson
2014년 8월 12일
편집: Joakim Magnusson
2014년 8월 12일
Sorry, i want to clarify that now i am using a loop to generate matrices out and then store them into a new matrix .Can i still use vertcat?
NG, do you mean like this?
B = [];
for i = 1:10
A = magic(4);
A(:, 2:4) = [];
B = vertcat(B, A);
end
댓글 수: 2
Matt J
2014년 8월 12일
That would not be recommendable. With B growing inside the loop, you will be doing a lot of repeated memory re-allocation.
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!