export x and y data from a matlab plot into a matrix
Mostra commenti meno recenti
how do I extract the x y data from a matlab figure? Thank you.
Risposte (3)
Honglei Chen
il 16 Feb 2012
Modificato: John Kelly
il 27 Mag 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
1 Commento
Baba
il 16 Feb 2012
Image Analyst
il 16 Feb 2012
0 voti
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.
Patrick Kalita
il 16 Feb 2012
0 voti
Also, take a look at the answers to these similar questions:
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!