How to manipulate the index of the for loop

조회 수: 3 (최근 30일)
Mallikarjuna
Mallikarjuna 2013년 12월 23일
편집: Jan 2013년 12월 23일
Hi,
I have to change the index of the for loop inside the loop only. Something like this,
for i1 = 1:10
if i1 =4
i1 = 6;
end
end
But I am not able to do this. Can some one help me in doing this.
Thanks,
Mallikarjun
  댓글 수: 1
Jan
Jan 2013년 12월 23일
Of course "you are able to do this". You can write it down and it is valid Matlab code, such that it will run (except for the == operator in the if condition). But I can guess, that you want to do something else. Then please explain explicitly, what you want and what you get. Relying on the power to guess problems and intentions is a bad idea in a forum.

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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 23일
편집: Azzi Abdelmalek 2013년 12월 23일
for i1 = 1:10
if i1==4
i1 = 6;
end
end
when i1==4 you set i1 to 6 ; the next iteration i1 will be equal to 5
%or
v=1:10;
v(v==4)=6;
for i1 = v
%do
end

추가 답변 (1개)

Jan
Jan 2013년 12월 23일
편집: Jan 2013년 12월 23일
A WHILE loop would work:
i1 = 1;
while i1 <= 10
if i1 == 4
i1 = 6;
end
i1 = i1 + 1;
end

카테고리

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