one problem about ismember function
显示 更早的评论
Hi, everyone, when I'm using ismemeber function, something goes wrong:
A=0.2:0.2:20;
B=5:5:20;
for i=1:100
if ismember(A(i),B)
disp(i)
end
end
it should display i = 25,50,75 and 100; but it only display 50,75,and 100;
Can anyone tell me why? Many thanks.
采纳的回答
更多回答(1 个)
Sayyed Ahmad
2018-7-10
That is not a problem of ismember function. The machine accuracy is in matlab eps
>>eps
ans=
2.2204e-16
to better understand you have to try this
>> 5==5+2*eps
ans =
logical
1
>> 5==5-2*eps
ans =
logical
1
I IEEE Standard “double precision floating point” is eps ≈ 1.11 × 10−16. In matlab the eps is 2^-52 but as you see +2*eps or less 2*eps deliverd the same resault.
in your case A(25)-5 is equal 4*eps which is numeric precision of calculation for 0.2:0.2:20.
If you use the diffrent of values (A(25)-5)<=4*eps the answer will be logical true.
I hope that is the answer of your quastion.
Cheers
Ahmad
类别
在 帮助中心 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!