How scale output window

13 次查看(过去 30 天)
for any program, how to scale figure window..ie size of window

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-3-5
编辑:Azzi Abdelmalek 2013-3-5
set(gcf,'position',[0 0 100 100])
You can also set units:
x0=0;
y0=0;
width=8 % inches
height=6 %inches
set(gcf,'units','inches','position',[x0 y0 width height])
Units allowed
[ inches | centimeters | normalized | points | {pixels} | characters ]

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Computer Vision Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by