How to compare exponential numbers with 7-9 digits of accuracy
1 次查看(过去 30 天)
显示 更早的评论
I am creating a GUI that allows the user to delete data points from a graph by clicking on them. The method has been working for most types of graphs, but for plots that have X-values expressed in exponential form, for example, 7.371477206897944e+05, the code does not work. Also the data range is 7.371476 e+05 to 7.371478 e+05, which makes the elements' X-values really close to each other.
V = event.IntersectionPoint(1:2);
V(1) = V(1);
V(2) = round(V(2),2);
ChosenPointScatter = scatter(V(1), V(2), 'markerfacecolor', 'k', 'markeredgecolor', 'k','parent', subplotRemoval{2});
indx = find(cell{15}(:,1) == V(1));
indy = find(cell{15}(:,2) == V(2));
Basically, I am trying to find the matrix index numbers for the element that equals 7.371477206897944e+05, but I get an empty value for every data point I select. Can you suggest any method for comparing exponential numbers like the one presented?
0 个评论
采纳的回答
dpb
2018-4-30
doc ismembertol
2 个评论
dpb
2018-4-30
It's a hard'un; there's no reason to think of that name for the purpose and there are very few links from places one might be in the documentation pointing to it...took me almost two years before I could reliably think of what it was named when wanted it.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!