필터 지우기
필터 지우기

How to convert from a for loop to a while loop

조회 수: 1 (최근 30일)
Yuqing Zhu
Yuqing Zhu 2016년 12월 13일
편집: James Tursa 2016년 12월 13일
I need to modify the set of codes below to a while loop
  댓글 수: 3
James Tursa
James Tursa 2016년 12월 13일
편집: James Tursa 2016년 12월 13일
Why do you need this converted? Is this homework? Why not get rid of the loop entirely and vectorize this operation?
Yuqing Zhu
Yuqing Zhu 2016년 12월 13일
편집: James Tursa 2016년 12월 13일
I do like this from lecture note, but doesn't work well. Anything wrong happened?
Vector = [3 -3 2 -6 1 -9];
Index = 1;
while Index <= length(Vector);
if(Vector(Index)<0);
continue
else
Vector(Index) = Vector(Index) * 2;
end
Index=Index+1;
end
disp(Vector)

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

채택된 답변

James Tursa
James Tursa 2016년 12월 13일
편집: James Tursa 2016년 12월 13일
Your loop doesn't work because the "continue" statement skips over the Index=Index+1 statement. You need to rewrite things without skipping over that statement ... e.g., maybe try to rewrite your if-then-else stuff so that you do not use a "continue" statement. (Hint: What happens to your logic if you simply comment out that "continue" statement?)
  댓글 수: 2
Yuqing Zhu
Yuqing Zhu 2016년 12월 13일
This question is from my review session. Use another way to do the same job maybe should be while loop. I have no idea to do the same job
James Tursa
James Tursa 2016년 12월 13일
편집: James Tursa 2016년 12월 13일
See my hint about how to get your while loop version working. Or see Dave Barry's one-liner.

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

추가 답변 (1개)

David Barry
David Barry 2016년 12월 13일
This does not need to be any kind of loop. You should learn about logical indexing in MATLAB. This can be done with one line of code.
Vector(Vector >=0) = Vector(Vector >=0) * 2;

카테고리

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