フィルターのクリア

Save figures in png format

3 ビュー (過去 30 日間)
Alessandro D
Alessandro D 2022 年 2 月 23 日
回答済み: DGM 2022 年 2 月 23 日
In order to save a plot in png format I use the following:
print(fullfile(FigDir,'firmSize'),FormatFig)
where FormatFig='-dpng' and FigDir specifies the directory where to save the plot. However the plot is not saved full screen: it is saved exactly as it is shown in the window that automatically pops up after executing the command plot. Then I have to manually make the plot full screen and then I save it. Is there a way to do this in the code instead of doing it manually?
Thanks!

回答 (1 件)

DGM
DGM 2022 年 2 月 23 日
This lists multiple methods to maximize a figure window. The suggestions depend on version and environment, so take note of that.
x = linspace(-10,10,101);
y1 = sinc(x);
hf = figure;
plot(x,y1)
hf.WindowState = 'maximized';

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by