Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
How to give range of value to a single variable
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Guillaume
il 28 Giu 2018
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.
Risposte (0)
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!