How can I obtain the coordinates(x,y) from my plot?
4 次查看(过去 30 天)
显示 更早的评论
I have a written a program which utimately plots a graph for me. I wish to obtain the x and y coordinates of desired points on my graph. How can I do this?
0 个评论
回答(1 个)
Honglei Chen
2012-6-28
编辑:Honglei Chen
2012-6-28
You can try to get the handle of the plotted object and then get XData and YData out of it. Here is an example
h = plot(1:10)
get(h,'XData')
get(h,'YData')
In your case, you may need to go down the hg tree to find the object you need.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!