Matlabで別のFigureファイルを操作する
メインのfigureとサブのfigureをGUIDEなどで作成して、
メインのfigureからサブのfigureを操作したいときのやり方。
サブのfigureには、1つのaxisしか存在しない場合を想定。
% サブのfigureを非表示でオープン
fig = openfig('subfigure.fig','invisible')
% サブのfigureのaxisのハンドルを取得
subAxis = findobj(fig.Children, 'Tag', 'axes1');
% サブのfigureに散布図を表示
scatter(subAxis, x, y, 50, 'red', 'filled');
% サブのfigureをpngとして保存
print(fig, '-dpng', 'subfigure.png');
% サブのfigureを表示
fig.Visible = 'on'
Author And Source
この問題について(Matlabで別のFigureファイルを操作する), 我々は、より多くの情報をここで見つけました https://qiita.com/xiaolong0703/items/105875451c51bcb12a3d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .