getting coordinates from gui axes

Hi,
I work with a GUI includes axes ( matlab2016a ),
I already activated the datacursor in gui side (from toolbar),
I can see coordinates when I click to graph,
But I want to get coordinates of mouse click, I mean reading the values, x and y,
I try with cp = get(gca,'CurrentPoint');
Does not work.
Can anyone help?
Regards.

回答(1 个)

You can use one of these commands to read the data on mouse click.
[x, y] = getpts(fig)
or
[x, y] = getpts(ax)

3 个评论

Thank you! Why it returns 12 values? How can I restrict it with only 1 or 2 value?
You can use 'enter' after the selection of required number of data points.
Thanks, I get it.
Is it possible using 'enter' by commands? I mean via code?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

提问:

2017-1-27

评论:

2017-1-27

Community Treasure Hunt

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

Start Hunting!

Translated by