You only need single & operators for what you’re doing.
Problems with and/or commands...
1 次查看(过去 30 天)
显示 更早的评论
Hey everyone,
I am using an if-condition within a loop. The loop is t=1:100.
The if-condition is
t>=sz1 && t<=sz2
ZZ(t)=2;
elseif t>=sz3 && t<=sz4
ZZ(t)=2;
elseif t>=sz5 && t<=sz6
ZZ(t)=2;
else
ZZ(t)=1;
end
sz1...sz6 represent number that I have defined earlier.
Now matlab gives me the following errors message: Operands to the and && operators must be convertible to logical scalar values.
What did I do wrong??
Thanks a lot!!
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Electrical Block Libraries 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!