How can I find the position of a real number in a vector?

1 visualización (últimos 30 días)
Cantor Set
Cantor Set el 5 de Mzo. de 2020
Editada: James Tursa el 5 de Mzo. de 2020
I have a vector v:
v=[-0.9990;0.8988;2;3];
I want to find the position of -0.9990.
I used find(x==-0.9990) it does not work.
Any solutions?
Thanks

Respuesta aceptada

James Tursa
James Tursa el 5 de Mzo. de 2020
Editada: James Tursa el 5 de Mzo. de 2020
Welcome to the world of floating point arithmetic. The number you are searching for cannot be represented exactly in IEEE double precision, so calculations involving it are subject to roundoff errors.
You will need to do the search with some tolerance. E.g.,
find( abs(x - (-0.9990)) < 1e-10 )
P.S. Your example actually does work if you use "v" instead of "x". I am assuming your actual v is built differently. Or maybe the typo is the entire problem.

Más respuestas (1)

Cameron B
Cameron B el 5 de Mzo. de 2020
find(v==-0.999)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by