This simple code note working, HELP

%this works well upto t==0.7, but not after 0.8
%give me an answer for this, not links
t=0;
for n=1:10
t=t+0.1;
disp(t)
if t==0.8
disp('if')
else
disp('else')
end
end

 采纳的回答

Direct comparison using == of floating-point number does not give the correct result. You need to allow some level of tolerance. Try this
t=0;
for n=1:10
t=t+0.1;
disp(t);
if abs(t-0.8) < 1e-6
disp('if')
else
disp('else')
end
end

3 个评论

Thank you very much, that worked!
If the case comprises with the floating point, can't we do it by rounding?
t=0;
for n=1:10
t=round(t+0.1,1);
disp(t)
if t==0.8
disp('if')
else
disp('else')
end
end
yes, that will work as well, but it is good to use the tolerance method. Otherwise, you will need to do rounding every time you do some mathematical operation on the variable.
Yes, tolerance method is much quicker.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

产品

版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by