出力されるFigureの大きさについて
689 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kenjirou Oomori
am 21 Jul. 2021
Beantwortet: Atsushi Ueno
am 21 Jul. 2021
figureコマンドで出てくるFigureのサイズを指定する方法はありますか?
現在はエクスポート設定からサイズを変換しているのですが
面倒くさいので最初からサイズを指定したいです。
0 Kommentare
Akzeptierte Antwort
Atsushi Ueno
am 21 Jul. 2021
Position — 描画可能領域の位置とサイズ:[left bottom width height]
figure('Position', [100 100 500 400]);
と
f = figure;
f.Position = [100 100 500 400];
は同じです。
他にも様々な表示サイズの種類や、印刷用サイズ指定の類もありますが、規定の設定で連動するようになっているので、Positionを変更すれば事足ります。
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!