Multiple gui from single one..?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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..?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 5 Feb. 2013
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 Kommentare
Walter Roberson
am 5 Feb. 2013
uicontrol('Style', 'push', 'Callback', @(src, event) LASER() );
and be sure to add in a Position parameter.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Camera Calibration finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!