Logical function not returning correct value for smaller numbers

1 次查看(过去 30 天)
I am writing a function which sould return back the index of the searched value. Because the numbers are smaller, the buildin find is not working.
Most of the times it works, but if the number is really small, it is not working. The condition Vektor(k) == x is false, although the numbers are exactly same.
function index_1 = find_Index(x,Vektor)
for k = 1:length(Vektor)
if Vektor(k) == x
index_1 = k;
return;
end
end
end

采纳的回答

Mischa Kim
Mischa Kim 2020-12-23
编辑:Mischa Kim 2020-12-23
Hi Ravi, try something like
if abs(Vektor(k) - x) < tol
and use tol to fine-tune your algorithm depending on how "different" your numbers are, e.g.
tol = 1e-4

更多回答(1 个)

Walter Roberson
Walter Roberson 2020-12-23
function index_1 = find_Index(x, Vektor)
index_1 = [];
[found, idx] = ismembertol(x, Vektor);
if found; index_1 = idx; end
This returns empty if no match, and the index of an "almost-exact" match if found . For example if x was sqrt(13)/3*3 and Vektor contained sqrt(13) then there is not a bit-for-bit equality, but ismembertol() would be willing to overlook the 4.44089209850063e-16 difference in values.
Or perhaps you would prefer
function index_1 = find_Index(x, Vektor)
[~, index_1] = min( abs(Vektor - x) );
which returns the index of the nearest value, even if numerically it is a distance. For example, the input could be 73 and the match might be against 100

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by