When I use use following code, why don't I get the desirable dimensions in my figure? (1cm x 2 cm)

1 回表示 (過去 30 日間)
x=0:1:10; y=0:.5:20; plot(x,y); set(groot,'defaultFigurePaperPosition','default') axis([0 10 0 20]) set(gcf,'Units','centimeters','position',[10 10 1 2])

回答 (1 件)

Sonam Gupta
Sonam Gupta 2017 年 12 月 7 日
As stated by documentation at https://in.mathworks.com/help/matlab/ref/matlab.ui.figure-properties.html#property_d119e283324, you cannot specify the figure Position property when the figure is docked. So, make sure the figure is not docked.
In your case, you are not able to see the figure size to be 1cm X 2cm because the Windows operating system enforces a minimum window width and a maximum window size. If you specify a figure size outside of those limits, the displayed figure will conform to the limits instead of the size you specified.

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by