multiple datatip value extraction
85 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have plotted my graph and have marked certain peaks in the graph with datatips. now i would like to extract all the marked values to either work space or anywer else so that i can plot those data again. i'm using R2009b
0 comentarios
Respuesta aceptada
Richard
el 21 de Mayo de 2012
Hi Kumaresan, You can get the values of datatip positions using the datacursormode and getCursorInfo functions:
d = datacursormode(fig);
vals = getCursorInfo(d);
where fig is the handle to your figure and vals is a structure containing positions and data indices.
2 comentarios
Walter Roberson
el 24 de Mayo de 2012
datacursormode() must be applied to a figure as a whole, not to a plot within a figure.
Más respuestas (0)
Ver también
Categorías
Más información sobre Bar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!