Problem finding the index?

10 vues (au cours des 30 derniers jours)
UPPALA SRINU
UPPALA SRINU le 6 Déc 2019
Commenté : UPPALA SRINU le 6 Déc 2019
I am facing a surprising problem. I assigned a range of values for a variable t=-10:0.2:89.8. When I am finding index of 30 by doing find(t==30) its printing 201.
But while finding the index of 40 by find(t==40) its printing 1x0 empty double row vector instead of 251. Why this problem is occuring?

Réponse acceptée

ME
ME le 6 Déc 2019
The problem is the precision which which your machine is able to store numbers. You are asking MATLAb to find an exact match to t=40, but when you open up the variable browser (or whatever it is called) and double click on the t = 40 box then you can see that it is actually stored as t = 39.999999999999990.
You'd probably be better off trying to find a value extremely close to t = 40 as this will find the right index.
  2 commentaires
UPPALA SRINU
UPPALA SRINU le 6 Déc 2019
Its resolved. Thank You.

Connectez-vous pour commenter.

Plus de réponses (3)

Constantino Carlos Reyes-Aldasoro
Ok, a problem of precision, I will edit the previous answer to have the complete solution

Constantino Carlos Reyes-Aldasoro
Modifié(e) : Constantino Carlos Reyes-Aldasoro le 6 Déc 2019
Hello, you have a very subtle problem, and it is that you do not have a value of 40 in your matrix. If you see the value of location 251 like this:
>> t (251)
ans =
40.0000
you see that is not the same as when you try 201
>> t (201)
ans =
30
Notice all the zeros after the decimal point in 251? To probe further you can subtract 40 from the value stored in 251:
>> t (251)-40
ans =
-7.1054e-15
so you will have that the value stored there is NOT 40 but 40.0000000 ... 0000015. You can fix this easily by changing the definition of t like this
>> t=-10:0.2:90;
and then try again
>> find(t==40)
ans =
251
Alternatively, you can change the precision of t from the beginning like this
>> t=round(10*(-10:0.2:90))/10;
by doing the rounding you have eliminated all the 0.0000000 parts of the vector, then you divide and return to your original precision and then it should work fine:
>> find(t==39.8)
ans =
250
Problem sorted.
  2 commentaires
Stephen23
Stephen23 le 6 Déc 2019
Modifié(e) : Stephen23 le 6 Déc 2019
"by doing the rounding you have eliminated all the 0.0000000 parts of the vector..."
This method does not "remove" those digits. In some cases it might change the stored value, but there is absolutely no guarantee of this either: if the values in the vector t cannot be represented exactly using binary floating point numbers then they will always be represented using the closest approximation (which include those decimal trailing digits).
"...then you divide and return to your original precision and then it should work fine:"
It might work in some limited cases, but this is not a general solution for comparing binary floating point numbers, and can introduce artifacts into the data:
"Problem sorted."
A much more robust solution is to compare the absolute difference against a tolerance, or use ismembertol. This is particularly relevant when the values being compared have been generated have different origins, e.g. constants, different algorithms, colon, linspace, etc..
UPPALA SRINU
UPPALA SRINU le 6 Déc 2019
Yes, now its fine.
[x,y]=min(abs(t-40)); also works in this case where y is the index.
Thank You.

Connectez-vous pour commenter.


UPPALA SRINU
UPPALA SRINU le 6 Déc 2019
By assigning it as t=-10:0.2:90 then also for find(t==39.8) it shows empty vector.
Because 39.8 is stored as 39.8000000000000004.
Thank You.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by