I need to get the data from this figure
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Meddour Aissam riad
am 23 Apr. 2020
Beantwortet: Star Strider
am 23 Apr. 2020
Hi there
like said in the title, i want to extract the data from this figure plz
0 Kommentare
Akzeptierte Antwort
Star Strider
am 23 Apr. 2020
The plot appears to have only Bar objects.
Try this:
F = openfig('untitled.fig');
Ax = gca;
hBar = findobj(Ax.Children, 'Type','Bar');
X = hBar.XData;
Y = hBar.YData;
Finding that took a bit of exploring.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Exploration 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!