Multiple gui from single one..?

I have four GUI with name LASER, CAMERA, SPHERE and CALIBRATION
For each time i have to run saperately..
Now i want to make one single GUI in which there will be four push buttons which will open this four gui's from single window respectively..
So, i want to open a multiple GUI from single one,
so, how to do it..?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 5 de Feb. de 2013

1 voto

It is not possible to have GUIs with numeric names. GUIs are MATLAB source, and possibly an associated MATLAB .fig file with the same name as the main source file. MATLAB source files must have names which are consistent with MATLAB identifiers, which are required to start with a letter.

3 comentarios

Lalit Patil
Lalit Patil el 5 de Feb. de 2013
I was just giving an example.
The real names are LASER, CAMERA, SPHERE, CALIBRATION and the fifth one main GUI i have to create is PROJECT
uicontrol('Style', 'push', 'Callback', @(src, event) LASER() );
and be sure to add in a Position parameter.
Lalit Patil
Lalit Patil el 5 de Feb. de 2013
Thanks a lot, this concept works for all Four GUI's...

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by