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!