Comparing 2 float nombers
显示 更早的评论
Hello I've some problem for comparing float nombers... a=123.123;
b=a-123;
b==0.123;
ans =
logical
0
...and whats the problem???
Tanx again...
回答(2 个)
KALYAN ACHARJYA
2019-5-4
编辑:KALYAN ACHARJYA
2019-5-4
>> format long
>> a=123.123
a =
1.231230000000000e+02
>> b=a-123
b =
0.123000000000005
>> b==0.1230
ans =
0
Image Analyst
2019-5-4
0 个投票
Try the function ismembertol().
See more discussion of your FAQ in the FAQ document: The MATLAB FAQ
类别
在 帮助中心 和 File Exchange 中查找有关 Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!