Save last figure position
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
Is there a way to save the position property of the last active figure?
Regards, Adi
Edit: OK, Thank you for answering so quickly.
0 件のコメント
採用された回答
Jan
2011 年 7 月 6 日
What is "last"? The last one before closing the Matlab session? The position of a dialog before closing?
For the later you can define the CloseRequestFcn and DeletFcn such that "get(FigureHandle, 'Position')" is used to get the position and store it in the format you want.
0 件のコメント
その他の回答 (1 件)
Gerd
2011 年 7 月 6 日
Hi Adi,
sure you can save the position of the figure.
% get current figure paper position
position = get(gcf,'PaperPosition');
Now you can save the position in a .txt file or in .mat or whatever
Gerd
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!