出力されるFigureの大きさについて

614 次查看(过去 30 天)
Kenjirou Oomori
Kenjirou Oomori 2021-7-21
figureコマンドで出てくるFigureのサイズを指定する方法はありますか?
現在はエクスポート設定からサイズを変換しているのですが
面倒くさいので最初からサイズを指定したいです。

采纳的回答

Atsushi Ueno
Atsushi Ueno 2021-7-21
Position — 描画可能領域の位置とサイズ:[left bottom width height]
figure('Position', [100 100 500 400]);
f = figure;
f.Position = [100 100 500 400];
は同じです。
他にも様々な表示サイズの種類や、印刷用サイズ指定の類もありますが、規定の設定で連動するようになっているので、Positionを変更すれば事足ります。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by