how to make changes on open figures?

2 ビュー (過去 30 日間)
Mohammad
Mohammad 2014 年 1 月 24 日
回答済み: Walter Roberson 2014 年 1 月 24 日
I'm writing a code,that should make some changes on all of the open figures and then save them in png format with the same name. There are sometimes one, and sometimes more than figur open. Does anybody have an idea how I should do that?

採用された回答

Walter Roberson
Walter Roberson 2014 年 1 月 24 日
fignums = findobj(0, 'type', 'figure');
for thisfig = fignums
set(thisfig, 'Papersize', [8.5 11]); %for example
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by