How scale output window

for any program, how to scale figure window..ie size of window

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 5일
편집: Azzi Abdelmalek 2013년 3월 5일

0 개 추천

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개)

카테고리

도움말 센터File 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