And function in While loop
4 次查看(过去 30 天)
显示 更早的评论
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 个评论
Sean de Wolski
2011-12-19
Your example is not clear. Can you clarify it please (and use code formatting.)
回答(3 个)
Jan
2011-12-19
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 个评论
Daniel Shub
2011-12-19
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
2011-12-19
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 个评论
Jan
2011-12-19
@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.
另请参阅
类别
在 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!