counter with if,elseif condition

6 次查看(过去 30 天)
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.

回答(1 个)

Abhishek Kumar
Abhishek Kumar 2019-7-11
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)

类别

Help CenterFile Exchange 中查找有关 Parametric Spectral Estimation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by