Selecting all data with brush in a figure
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I Want to select all points of a figure by mentioning the brush command in code. and then I require to save all pints of graph. Can any1 help?
0 Kommentare
Antworten (1)
Ilham Hardy
am 3 Jul. 2012
Just a wild guess:
- You already have the graph (.fig file)
- and you need to retrieve the values of the graph
Then do these,
- Open you graph (double click .fig file)
- type
lh= findall(gcf,'type','line')
xp=get(lh,'xdata');
yp=get(lh,'ydata');
HTH,
IH
0 Kommentare
Siehe auch
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!