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

 채택된 답변

Pedro Villena
Pedro Villena 2014년 5월 20일

0 개 추천

if round(s*1000)/1000 == 0.025,
...
end

추가 답변 (1개)

JTR
JTR 2014년 5월 20일

0 개 추천

That worked! Thanks everyone!

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

질문:

JTR
2014년 5월 20일

답변:

JTR
2014년 5월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by