How to export data used to make MATLAB figure?
Ältere Kommentare anzeigen
Hello, I have a matlab figre with tabs. How do I extract data from each tab and import into excel? Thank you.
2 Kommentare
dpb
am 18 Jan. 2023
Why don't you save the data when creating the figure instead?
Sophie Astrof
am 18 Jan. 2023
Antworten (1)
prasanth s
am 19 Jan. 2023
fig=openfig('SophiesFigure_nanodomains.fig');
data1=fig.Parent.Children(2).CurrentAxes.Children.YData %histogram
xdata=ww.CurrentObject.Parent.Children(1).Children(2).Children(2).XData; %scatter
ydata=ww.CurrentObject.Parent.Children(1).Children(2).Children(2).YData; %scatter
Kategorien
Mehr zu Multirate Signal Processing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!