How to compare exponential numbers with 7-9 digits of accuracy

3 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

dpb
dpb el 30 de Abr. de 2018
doc ismembertol
  2 comentarios
theblueeyeswhitedragon
theblueeyeswhitedragon el 30 de Abr. de 2018
Editada: theblueeyeswhitedragon el 30 de Abr. de 2018
Thank you. It was exactly what I was looking for.
dpb
dpb el 30 de Abr. de 2018
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by