필터 지우기
필터 지우기

Help me about creating GUI in matlab ?

조회 수: 1 (최근 30일)
Nguyen Trong Nhan
Nguyen Trong Nhan 2013년 12월 26일
댓글: Nguyen Trong Nhan 2013년 12월 26일
I created a GUI in matlab but I can't make my GUI as big as full screen. Can you help me how to make it big as full screen. thank you very much.

채택된 답변

Walter Roberson
Walter Roberson 2013년 12월 26일
After you create the GUI, supposing you know the figure number is FigNum, then
set(FigNum, 'Units', 'norm', 'Position', [0 0 1 1]);
Note: if what you are trying to do is "full screen" in the sense of covering the task bar (MS Windows) or menu bar (OS-X), then a different unsupported method would have to be used.

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 26일
You can get the screen size:
scr_size = get(0,'ScreenSize');
  댓글 수: 1
Nguyen Trong Nhan
Nguyen Trong Nhan 2013년 12월 26일
Where I should put "scr_size = get(0,'ScreenSize');" ?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by