getting x values by clicking on axes

4 views (last 30 days)
Haykush
Haykush on 4 May 2013
Hi all!
I have the set of (x,y) data:
x=[4 10 25 30 37 45 58 77 81 89 93 100 113 122 130 137 145 152 160 163]; y=[15 24 7 45 35 58 71 22 64 10 21 35 67 50 59 63 77 43 40 5];
After plotting it, I want to be able to get x values in t vector by clicking on the axes.
How can i do it?
  2 Comments
per isakson
per isakson on 4 May 2013
Why clicking on the axes? Why not by clicking on the curve?
Search for "Data Cursor" in the on-line help.

Sign in to comment.

Answers (2)

Azzi Abdelmalek
Azzi Abdelmalek on 4 May 2013
Click on your plot the add this code
x=get(gco,'xdata')
y=get(gco,'ydata')
  15 Comments
Haykush
Haykush on 4 May 2013
Please, check your e-mail.

Sign in to comment.


Haykush
Haykush on 4 May 2013
First of all, thanks so much for your attention.
For example, I need to fix N data by clicking to the x axis. What do you suggest to do in this case?
Thanks in advance.

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!