How scale output window

8 views (last 30 days)
Rajesh
Rajesh on 5 Mar 2013
for any program, how to scale figure window..ie size of window

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 5 Mar 2013
Edited: Azzi Abdelmalek on 5 Mar 2013
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 ]

More Answers (0)

Categories

Find more on Computer Vision Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!