how to concatenate matrix horizontally for a large number of matrices in a for loop
2 次查看(过去 30 天)
显示 更早的评论
For example,
I am doing data analysis of a matrix of A whose dimension is 175x90. Since I analyze this dataset one by one such that A(:,1), A(:,2)...A(:,90). In the end, I hope I could still obtain a matrix of of B whose dimension is also 175x90. So I decided to use "horzcat" command such that B=horzcat(A(:,1), A(:,2)...A(:,90)). However, since there could be a really large number for me to concatenate, how can I achieve this in a loop rather than do this manually?
Thank you so much!
2 个评论
回答(1 个)
Walter Roberson
2019-3-1
numrow = size(A,1);
numcol = size(A,2);
B = zeros(numrow, numcol)
for column = 1 : numcol
this_column = A(:,column);
.....
this_result = ...
B(:,column) = this_result;
end
0 个评论
另请参阅
类别
在 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!