export x and y data from a matlab plot into a matrix
12 views (last 30 days)
Show older comments
how do I extract the x y data from a matlab figure? Thank you.
0 Comments
Answers (3)
Honglei Chen
on 16 Feb 2012
Edited: John Kelly
on 27 May 2014
You need to access XData and YData property, for example:
h = plot(1:10);
get(h,'XData')
get(h,'YData')
Here is a handy tool to find out the handle graphics properties
Image Analyst
on 16 Feb 2012
If it just recently popped up, and you can run some code to get to it before focus switches to some other figure, then you can use gca or gcf for the handle.
0 Comments
Patrick Kalita
on 16 Feb 2012
Also, take a look at the answers to these similar questions:
0 Comments
See Also
Categories
Find more on Annotations 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!