I have a vector with a 2 million components, how do i find the index of the component which got the value 29.6 in it?

Antworten (1)

KSSV
KSSV am 31 Aug. 2017

2 Stimmen

idx = find(abs(v-29.6)<=10^-5) ;
where v is your vector with a 2 million components.

2 Kommentare

Jan
Jan am 31 Aug. 2017
Or: <= 1e-10 or what ever limit is matching.
The idea is that comparisons for equality are weak for floating point values. Perhaps the 29.6 is the result of a calculation and is actually a 29.5999999999999. See https://www.mathworks.com/matlabcentral/answers/57444-faq-why-is-0-3-0-2-0-1-not-equal-to-zero
Note that 10^-5 is an expensive power operation , while 1e-5 is a cheap constant. Matlab does not optimize such constant expressions yet.
José-Luis
José-Luis am 31 Aug. 2017
Also, this is probably somewhere you want to use eps().
Depending on the order of magnitude of OP's data, @KSSV's solution might yield junk.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Operators and Elementary Operations finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 31 Aug. 2017

Kommentiert:

am 31 Aug. 2017

Community Treasure Hunt

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

Start Hunting!

Translated by