data from figures without data
1 回表示 (過去 30 日間)
古いコメントを表示
Hello family,
how do I extract experimental values or data from a figure using matlab
1 件のコメント
Adam Danz
2019 年 9 月 3 日
This is a common question with lots of existing answers in this forum.
Check out this link for advice on how to get help in this forum
採用された回答
Subhadeep Koley
2019 年 9 月 6 日
The following code might help.
% Open your figure
fig = openfig('example.fig');
% Find Xdata and YData objects
dataObjs = findobj(fig,'-property','YData');
y1 = dataObjs(1).YData;
dataObjs = findobj(fig,'-property','XData');
x1 = dataObjs(1).XData;
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!