while loop; a small problem

조회 수: 2 (최근 30일)
antonet
antonet 2012년 8월 21일
Dear all,
I have the following statement
k=1;
while abs(k) >= 1
'excecute'
end
the above code is included inside a main loop
I observe though that when k=1; is outside the main loop the algorithm does not get stuck. When I include it inside the main loop after some iterations it gets stuck.
Would it be wrong to put it outiside loop?
thanks
  댓글 수: 3
Jürgen
Jürgen 2012년 8월 21일
And what does the main loop do? It probably influence the value of k in one of both loops...
Jan
Jan 2012년 8월 21일
The description "when I include it insie the loop" is clear for you, but not clear for us. Please post the code you are talking about.

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

답변 (1개)

Matt Fig
Matt Fig 2012년 8월 21일
This loop, as you written it, should always 'get stuck' because k does not change inside the loop. What are you trying to do with this loop? Do you just want to print the word execute to the screen once through the outer loop?
  댓글 수: 3
Jan
Jan 2012년 8월 21일
No. 'execute' is a string.
Matt Fig
Matt Fig 2012년 8월 21일
편집: Matt Fig 2012년 8월 21일
Jan is correct. I think you are not doing what you think you are doing! The ONLY way I can see that this loop would not hang when inside another loop is if it is actually inside a conditional that isn't getting met....

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

카테고리

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