How to display the x and y values of the cursor location on plot in GUIDE
23 次查看(过去 30 天)
显示 更早的评论
Suppose I plot a graph on an axis in MATLAB GUIDE. How do I get two static text boxes to display the x and y values of the point my cursor is hovering over? I know this can be done to show the pixel coordinates in the GUI, but when it comes to a plot I am unsure.
0 个评论
采纳的回答
Fangjun Jiang
2018-10-2
Would this help?
doc datacursormode
4 个评论
Fangjun Jiang
2018-10-4
Ha, this might work
plot(rand(1,10),'o-')
[x,y]=ginput(1);
line([x x],ylim);
line(xlim,[y y]);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!