필터 지우기
필터 지우기

Multiple gui from single one..?

조회 수: 2 (최근 30일)
Lalit Patil
Lalit Patil 2013년 2월 5일
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..?

채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 5일
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
Walter Roberson
Walter Roberson 2013년 2월 5일
uicontrol('Style', 'push', 'Callback', @(src, event) LASER() );
and be sure to add in a Position parameter.
Lalit Patil
Lalit Patil 2013년 2월 5일
Thanks a lot, this concept works for all Four GUI's...

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 App Building에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by