I need to get the data from this figure
1 回表示 (過去 30 日間)
古いコメントを表示
Hi there
like said in the title, i want to extract the data from this figure plz
0 件のコメント
採用された回答
Star Strider
2020 年 4 月 23 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Exploration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!