필터 지우기
필터 지우기

Running a mlapp file from another mlapp file via pushbutton callback

조회 수: 8 (최근 30일)
Jason
Jason 2023년 7월 10일
댓글: Jason 2023년 7월 10일
Hello, I have a mlapp file and want to run another one from a pushbutton.
Following the link below, I'm able to run my 2nd mapp file (ImageViewer.mlapp) by placing the name of the app in the pushbutton callback
i.e.
function TESTButtonPushed(app, event)
ImageViewer.mlapp
end
However, this requires I put the ImageViewer.mlapp file in the same director as my first mlapp file which I don't want to do. So my question is, how do I run a 2nd mlapp file but thats in a different directory.
Thanks
please note, I don't need to share data, so please dont just share links with how to do this (I have already read them!)

채택된 답변

Adam Danz
Adam Danz 2023년 7월 10일
> how do I run a 2nd mlapp file but thats in a different directory?
Add the path to the 2nd app in the button callback or specify the mlapp file using the full path.
function TESTButtonPushed(app, event)
addpath(____)
ImageViewer.mlapp
end
or
function TESTButtonPushed(app, event)
\__fullpath__\ImageViewer.mlapp
end
  댓글 수: 3
Jason
Jason 2023년 7월 10일
How about if i compile my 2nd mlap file first as an exe. Then that will take care of all the dependencies i assume? so can i just call that exe file within my first mlap file, but have the first file compiled to an exe?

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by