And function in While loop
4 views (last 30 days)
Show older comments
I am writing a code using while loop. I would like to use AND function in the condition,however, only the first part(before AND function) condition has been taken into calculation, I don't know how to get the second part(after AND sign "&&") involved into the calculation. The simple example would be while 1*a+2*b<100&&1*a<30 ... ... ... a=a+1 end
Thanks in advance
1 Comment
Sean de Wolski
on 19 Dec 2011
Your example is not clear. Can you clarify it please (and use code formatting.)
Answers (3)
Jan
on 19 Dec 2011
The && and the & operators do a short-circuiting in IF and WHILE conditions. To avoid the short circuting and force both expressions top be evaluated, use the and() function.
Examples: This does not print "i = 10".
i = 0;
while i<10 & fprintf('i = %d\n', i)
i = i + 1;
end
This does print "i = 10":
i = 0;
while fprintf('i = %d\n', i) & i<10
i = i + 1;
end
or:
while and(i<10, fprintf('i = %d\n', i))
But please consider that using side-effects in IF or WHILE conditions is a bad programming habit. It is prone to mistakes and hard to debug. If you really have a good reason for short-circuting, add a comment:
while i<10 & fprintf('i = %d\n', i) % Short-circuit!
0 Comments
Daniel Shub
on 19 Dec 2011
If you use & instead of && both parts will be evaluated, even if the first part is false. Although this seems like a waste of time ...
clear x y
x = 10;
x < 5 && y < 5
This works, but this does not
x < 5 & y < 5
since y is undefined. If you define y, then it is fine
y = 10
x < 5 & y < 5
Nirmal Gunaseelan
on 19 Dec 2011
As is the case with any programming language, MATLAB evaluates the second operand of an AND operation only when the first operand is TRUE. This is because if the first operand evaluates to a FALSE, there is no need to evaluate the second operand because the final result is already FALSE due to AND semantics.
Considering there is no variable called noVar in the workspace,
>> if (1>2 && noVar)
end
>> if (1<2 && noVar)
end
Undefined function or variable 'noVar'.
3 Comments
Jan
on 19 Dec 2011
@Daniel: Inside a IF-condition, the & operator does short circuiting. Try this:
if 1>2 & asdasdasd, disp(8), else, disp(9); end
The & operator behaves differently when used inside or outside an IF or WHILE condition. This is a backward compatibility issue to Matlab 6.
See Also
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!