I need to get the data from this figure
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Meddour Aissam riad
il 23 Apr 2020
Risposto: Star Strider
il 23 Apr 2020
Hi there
like said in the title, i want to extract the data from this figure plz
0 Commenti
Risposta accettata
Star Strider
il 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Exploration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!