Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to give range of value to a single variable
1 次查看(过去 30 天)
显示 更早的评论
I need to create a series given below rt = 0<x<=1 ,1<x<=4 , 4<x<=7 , 7<x<=10
After this, check one condition for each element of rt with two matrices using if loops
I will explain that single value problem,
for rt=1:1:10
h=0;f=0;m=0;c=0;
for s=1:z
if ob(s)==rt && da3(s)==rt
h=h+1;
elseif ob(s)~=rt && da3(s)==rt
f=f+1;
elseif ob(s)==rt && da3(s)~=rt
m=m+1;
elseif ob(s)~=rt && da3(s)~=rt
c=c+1;
end
end
end
3 个评论
Guillaume
2018-6-28
I don't see any marked difference between this question and the previous two times you asked it:
In none of these questions have you clearly explained what you want. So please, go and edit either of these questions. And provide a lot more details, such as an example of input and desired output.
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!