Info

This question is closed. Reopen it to edit or answer.

How to give range of value to a single variable

1 view (last 30 days)
Athul C P
Athul C P on 28 Jun 2018
Commented: Jan on 28 Jun 2018
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 Comments
Guillaume
Guillaume on 28 Jun 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.
Jan
Jan on 28 Jun 2018
There are not "if loops" in Matlab.

Answers (0)

This question is closed.

Tags

Products


Release

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!