how to replace "&&" in a loop
显示 更早的评论
I would like not to use "&&" in this loop:
if a=x && b=y
d=2
end
how can i replace it?
回答(1 个)
"how to replace "&&" in a loop"
If, for whatever reason, you don't like the && symbols,
if a==x && b==y
d=2;
end
could be rewritten as
if all([a==x,b==y])
or
if all([isequal(a,x), isequal(b,y)])
or perhaps you'd like to use indexing as Stephen pointed out,
idx = a==x & b==y;
d(idx) = 2;
2 个评论
Adam Danz
2020-3-6
The original code would throw an error at if a=x but I'll up date my answer to cover the indexing interpretation.
类别
在 帮助中心 和 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!