while loop; a small problem
Show older comments
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 Comments
Matt Fig
on 21 Aug 2012
What does this do:
'execute'
Jürgen
on 21 Aug 2012
And what does the main loop do? It probably influence the value of k in one of both loops...
Jan
on 21 Aug 2012
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.
Answers (1)
Matt Fig
on 21 Aug 2012
0 votes
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?
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!