出力されるFigureの大きさについて
조회 수: 689 (최근 30일)
이전 댓글 표시
figureコマンドで出てくるFigureのサイズを指定する方法はありますか?
現在はエクスポート設定からサイズを変換しているのですが
面倒くさいので最初からサイズを指定したいです。
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!