Logical function not returning correct value for smaller numbers
显示 更早的评论
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
1 个评论
Walter Roberson
2020-12-23
The values are probably not exactly the same.
采纳的回答
更多回答(1 个)
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
类别
在 帮助中心 和 File Exchange 中查找有关 Elementary Math 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!