I need to get the data from this figure

2 ビュー (過去 30 日間)
Meddour Aissam riad
Meddour Aissam riad 2020 年 4 月 23 日
回答済み: Star Strider 2020 年 4 月 23 日
Hi there
like said in the title, i want to extract the data from this figure plz

採用された回答

Star Strider
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 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by