While loops & multiple variables
17 次查看(过去 30 天)
显示 更早的评论
Hi There,
I've run into an issue whilst using a while loop in my script involving iterations. The loop must end once a certain number of variables in the script converges to a pre-defined error value/limiing criterion between the nth and n-1th iteration.
i.e.
INPUT
while abs(xn - xn-1) >= limiting criteron
SCRIPT HERE
end
OUTPUTS
That's fine for one variable and works as wanted.. as soon as the variable on the left become less than the limiting criterion, it ends.
What I wanted to do is the same idea but with multiple variables requiring this limiting criterion i.e. I want it to keep iterating so that multiple variables converge to less than this value. (assuming convergence exists).
My attempt is something along the lines of:
INPUTS
while [abs(xn - xn-1), abs(yn - yn-1), abs(zn-zn-1)] <= [limiting criterion, limiting criterion, limiting criterion]
SCRIPT HERE
end
OUTPUTS
What appears to be happening is as soon as any of the variables becomes less than this limiting criterion, the loop ends, but what I want to happen is it to keep iterating until all the variables are less than the limiting criterion, again assuming convergence exists.
Any ideas?
Thanks in advance
Conor.
2 个评论
回答(2 个)
Andrew Newell
2015-2-21
Your while condition returns a logical vector, and if any of its components is false the whole thing is false and the loop ends. What you need is
while any([abs(xn - xn-1), abs(yn - yn-1), abs(zn-zn-1)] >= [limiting criterion, limiting criterion, limiting criterion])
Image Analyst
2015-2-21
Try
continueWithLoop = true;
while continueWithLoop
% Some code....
% Check if we can quit loop or need to continue
continueWithLoop = abs(x(n) - x(n-1)) > limitingCriterion || ...
abs(y(n) - y(n-1)) > limitingCriterion || ...
abs(z(n) - z(n-1)) > limitingCriterion
end
5 个评论
Image Analyst
2015-2-22
- xn should be x(n)
- xn-1 should be x(n-1)
- yn should be y(n)
- yn-1 should be y(n-1)
- zn should be z(n)
- zn-1 should be z(n-1)
- Each of the three instances of "limiting criterion" should be "limitingCriterion" since variables can't have spaces in their names.
Andrew Newell
2015-2-22
编辑:Andrew Newell
2015-2-22
Oh. I was viewing it as pseudocode and assuming the actual code was mostly correct.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!