how to display output of all iteration of for loop in a matrix or even a array

조회 수: 4 (최근 30일)
a=[1 2 3 4 5 6 7 8 9 0]
for i=1:2:7
b=a(1,i:i+3)
end
this is the code i hve written,now i want this output in the form of a matrix. can someone help

채택된 답변

Thomas
Thomas 2014년 2월 4일
a=[1 2 3 4 5 6 7 8 9 0]
count=1;
for i=1:2:7
b(count,:)=a(1,i:i+3);
count=count+1;
end
b

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by