How can i make GUI pushback button call my App created in app designer?

조회 수: 5 (최근 30일)
michael pak
michael pak 2019년 4월 4일
댓글: Adam 2019년 4월 10일
How can i set up my GUI pushback button to call my application created in app designer (XXX.mlapp)?
I am trying to use a push button to call my app and i cant seem to get it to work.
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
?????????
If someone can show the exact code to call the application that i would be great. I have read mutiple threads and have been getting nothing but errors.
  댓글 수: 1
Adam
Adam 2019년 4월 10일
You should be able to run it just using its name, the same as you would from command line

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

답변 (1개)

Agnish Dutta
Agnish Dutta 2019년 4월 10일
I recommend using MATLAB appdesigner to create GUIs with interactivity.
The first thing to do would be to include the target application in the MATLAB path.
You can execute any application on the MATLAB search path using the "!" expression before its name. Check the first answer to the question on the MATLAB answers page below:
Next create a GUI using MATLAB appdesigner and drag and drop a "button" element on the canvas. Add a callback function to the button element's on press event and include the command "!<name of application>" in it. This will open the application every time you press the "button" element. Refer to the following documents for more information.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by