I created a consecutive number sequence as follow:
dTime = 0:0.01:5;
However when I type
k=find(dTime==3.53)
I get:
k =
Empty matrix: 1-by-0
But k=find(dTime==3.52)
, produces a result. Any recommended solutions? Why does the problem arise?