Help me about creating GUI in matlab ?

2 visualizaciones (últimos 30 días)
Nguyen Trong Nhan
Nguyen Trong Nhan el 26 de Dic. de 2013
Comentada: Nguyen Trong Nhan el 26 de Dic. de 2013
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.

Respuesta aceptada

Walter Roberson
Walter Roberson el 26 de Dic. de 2013
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.

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 26 de Dic. de 2013
You can get the screen size:
scr_size = get(0,'ScreenSize');
  1 comentario
Nguyen Trong Nhan
Nguyen Trong Nhan el 26 de Dic. de 2013
Where I should put "scr_size = get(0,'ScreenSize');" ?

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by