I need to get the data from this figure
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Meddour Aissam riad
le 23 Avr 2020
Réponse apportée : Star Strider
le 23 Avr 2020
Hi there
like said in the title, i want to extract the data from this figure plz
0 commentaires
Réponse acceptée
Star Strider
le 23 Avr 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Exploration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!