Effacer les filtres
Effacer les filtres

I cannot find the index of a specific element in an array?

2 vues (au cours des 30 derniers jours)
Robin
Robin le 31 Juil 2011
I have an array of non-repeating elements, X. I need to find the index of a specific element, 1.5 in X. I am trying to do index=find(X==1.5). However it just does not work. I gives me a "empty matrix". Does this have to do with the elements in the array being decimal (float?) ? Please help me out.
  1 commentaire
Robin
Robin le 31 Juil 2011
btw, I am absolutely sure that 1.5 and the other elements I've tried with this method is actually in array X.

Connectez-vous pour commenter.

Réponses (1)

Oleg Komarov
Oleg Komarov le 31 Juil 2011
Yes, floating point approximation ( faq6.1)
What you see is not what you get!
try this:
a = 0.2 + 0.1
>> a == 0.3
ans =
0
sprintf('%.17f',a)
% Compare with threshold
abs(a - 0.3) < eps
  3 commentaires
Oleg Komarov
Oleg Komarov le 31 Juil 2011
Reading the faq won't hurt just because it's in the brackets.
Jan
Jan le 31 Juil 2011
@Robin: This is an evergreen question. Ask Google for "Matlab faq6.1" to find more.
@Oleg: +1.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by