counter with if,elseif condition

6 views (last 30 days)
DEEKSHA GUPTA
DEEKSHA GUPTA on 15 Feb 2018
Answered: Abhishek Kumar on 11 Jul 2019
Hello,I am using counter with if,elseif condition but result is not expected,becoz i want ouput=1 for first 32 counter,then output=2 for next 32 count,then output=3 for next 32 count,but according to MATLAB result it is comming 1 for first 32 counter and output=2 for remaining count.

Answers (1)

Abhishek Kumar
Abhishek Kumar on 11 Jul 2019
for loop=1:200
if(loop<=32)
p(loop)=1;
elseif(loop<=64)
p(loop)=2;
elseif(loop<=96)
p(loop)=3;
elseif(loop<=128)
p(loop)=4;
elseif(loop<=160)
p(loop)=5;
end
end
Use this code. it works fine.
In the 'elseif' after the if block, it is already assured that loop is greater than 32. And even if you want to write it explicitly the correct way would be:
elseif(loop>32 && loop<=64)

Tags

Community Treasure Hunt

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

Start Hunting!