Can't enter if statement

5 vues (au cours des 30 derniers jours)
JTR
JTR le 20 Mai 2014
Réponse apportée : JTR le 20 Mai 2014
Hello everyone!
I have the following code:
s_stepwidth = 0.005;
...
for s = 1:-s_stepwidth:0
...
if( s == 1 )
do something 1
if( s == 0.05 )
do something 2
if( s == 0.025 )
do something 3
...
end
My problem is now that the thrid and the second if does not work. Those if statements are never true. On the other hand the first one works (because nothing has been subtracted). Am I doing something wrong here (probably :D)?
Thanks

Réponse acceptée

Pedro Villena
Pedro Villena le 20 Mai 2014
if round(s*1000)/1000 == 0.025,
...
end

Plus de réponses (1)

JTR
JTR le 20 Mai 2014
That worked! Thanks everyone!

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by