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

조회 수: 1 (최근 30일)
Cantor Set
Cantor Set 2020년 3월 5일
편집: James Tursa 2020년 3월 5일
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

채택된 답변

James Tursa
James Tursa 2020년 3월 5일
편집: James Tursa 2020년 3월 5일
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.

추가 답변 (1개)

Cameron B
Cameron B 2020년 3월 5일
find(v==-0.999)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by