Effacer les filtres
Effacer les filtres

counter with if,elseif condition

3 vues (au cours des 30 derniers jours)
DEEKSHA GUPTA
DEEKSHA GUPTA le 15 Fév 2018
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.

Réponses (1)

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

Catégories

En savoir plus sur Parametric Spectral Estimation dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by