question on months&days in 2012
1 次查看(过去 30 天)
显示 更早的评论
I'm unable to complete this assigment; solutions welcome! I've only started using MATLAB last week (so yes, I'm aware this is basic). https://gyazo.com/c707328e01a308366fae5147aef147bc
5 个评论
jonas
2018-10-25
编辑:jonas
2018-10-25
One of your conditions basically reads like this:
if A==1 | 2 | 3
That is not how to write a condition.
A loop is executed when the condition returns true. The condition above will always return true, for any month or day. Basically you can test the condition like this:
A=1;
logical(A==0 | 2)
ans =
logical
1
What?! A is not equal 0 nor 2, why does it return true (1)? As the condition is written, true will be returned if any one of the two separate conditions are satisfied, and the logical of anything other than zero (such as 2) returns true.
logical(-1)
ans =
logical
1
The correct way would be
if A==1 | A==2 | A==3
or
if ismember(A,[1 2 3])
采纳的回答
jonas
2018-10-25
编辑:jonas
2018-10-25
Now that you've basically solved it, here is my (hopefully correct) solution. Note that for scalars you can write && instead of &. It is a bit faster, because not all conditions are necessarily checked.
d = 31;
m = 4;
% Check day
if d>=0 && d<=31
disp('OK')
else
disp('not OK')
end
% Check month
if m>=1 && m<=12
disp('OK')
else
disp('not OK')
end
% Check day & month
if d==31 && ~ismember(m,[1 3 5 7 8 10 12])
disp('not OK')
elseif (d==30 || d==29) && m==2
disp('not OK')
else
disp('OK')
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!