find behavior is weird

1 view (last 30 days)
ahmed shaaban
ahmed shaaban on 24 Feb 2015
Commented: ahmed shaaban on 24 Feb 2015
Hello all I am trying to use find to find some value, however, it sometimes works, other not.
gLat = -40:0.1:40;
find(gLat == 4.2)
I found
ans =
Empty matrix: 1-by-0
Any explanation for this. Thanks in advance

Accepted Answer

Sean de Wolski
Sean de Wolski on 24 Feb 2015
  1 Comment
ahmed shaaban
ahmed shaaban on 24 Feb 2015
thanks a lot it works, I modified it to be
find (abs(gLat-4.2) < 0.00001)

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!