How to run two ".m" files in a single GUI using pop-up menu and push button in GUI?
조회 수: 8 (최근 30일)
이전 댓글 표시
How to run two ".m" files in a single GUI using pop-up menu and push button in GUI?
GUI layout :- I have one pop-up menu with two options. One push button and an axes to display output image.
Problem:-After selecting one option, when i click push button the output should be displayed on axes. There are two different ".m" programs for two options in pop up menu. But it has to be executed only after clicking push button.
Can anyone help me!!!!
댓글 수: 0
답변 (1개)
Dishant Arora
2014년 2월 19일
편집: Dishant Arora
2014년 2월 19일
function popupmenu1_Callback(hObject, eventdata, handles)
val = get(hObject,'Value');
setappdata(0,'popupIndex',val);
function pushbutton_callback(hObject, eventdata, handles)
popupIndex = getappdata(0,'popupIndex')
switch popupIndex
case 1
yourProgramName1 % don't forget to pass on the parameters if it's a function
case 2
yourProgramName2
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!