How to combine the matrices that are output by the for loop.

조회 수: 3 (최근 30일)
Ellie
Ellie 2015년 8월 19일
편집: Azzi Abdelmalek 2015년 8월 20일
Hi all,
I am trying to combine all the outputs of a for loop into one large matrix. All the outputs are matrices. Here is my code so far.
s = 1:100; d = reshape(s, [10 10])';
d = mat2cell(d, ones(1,10), 10);
k2 = length(d) * 5;
for k1 = 1:length(d)
samp1{k1} = randsample(d{k1,1}, k2, true);
samp2 = reshape(samp1{1,k1},length(d), 5)';
end
Thanks for any help you can give.
Regards.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 20일
편집: Azzi Abdelmalek 2015년 8월 20일
s = 1:100;
d = reshape(s, [10 10])';
d = mat2cell(d, ones(1,10), 10);
k2 = length(d) * 5;
out=[];
for k1 = 1:length(d)
samp1{k1} = randsample(d{k1,1}, k2, true);
samp2 = reshape(samp1{1,k1},length(d), 5)';
out=[out;samp2];
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by