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])
0 个评论
回答(1 个)
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!