Double for loop is not working properly

조회 수: 2 (최근 30일)
Sebastian Engelsgaard
Sebastian Engelsgaard 2021년 1월 27일
편집: Sebastian Engelsgaard 2021년 1월 28일
Hi,
I have a 1x12 cell called 'ch' which contains a repeatable pattern as shown in the code below. I assume that the first row of cells in 'ch' repeats twice, however, the 7th column in ch is not using data{1,2}...
Anyone can help?
for n=1:6:12
for k=1:2
ch{1,n}= data{1,k}(:,14);
ch{1,n+1}= 1500
ch{1,n+2}= 'id'
ch{1,n+3}='name'
ch{1,n+4}='tag'
ch{1,n+5}='unit'
end
end
  댓글 수: 1
Bob Thompson
Bob Thompson 2021년 1월 27일
What you have posted worked fine for me. The ch{1,7} did capture data{1,2}.

댓글을 달려면 로그인하십시오.

채택된 답변

Daniel Pollard
Daniel Pollard 2021년 1월 27일
k will take the values [1 2]. For the first iteration of k, it stores data{1,1}(:,14) in ch{1,n}. The second time around, it will store data{1,2}(:,14) in ch{1,n}, overwriting what was previously done. The data associated with k=1 is never stored.
  댓글 수: 4
Bob Thompson
Bob Thompson 2021년 1월 27일
I think you can actually just combine it down to one loop
for k=1:2
ch{1,(k-1)*6+1}= data{1,k}(:,14);
ch{1,(k-1)*6+2}= 1500
ch{1,(k-1)*6+3}= 'id'
ch{1,(k-1)*6+4}='name'
ch{1,(k-1)*6+5}='tag'
ch{1,k*6}='unit'
end
Sebastian Engelsgaard
Sebastian Engelsgaard 2021년 1월 28일
편집: Sebastian Engelsgaard 2021년 1월 28일
Thx. It works.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by