필터 지우기
필터 지우기

App Designer: App runs from Matlab but not after Compiler

조회 수: 14 (최근 30일)
Dominik Müller
Dominik Müller 2020년 10월 12일
편집: Dominik Müller 2020년 10월 12일
Hi everyone,
I have an app created in App Designer. If I run it directly from Matlab/App Designer everything works perfect. But after I used Matlab Compiler the app doesn't work anymore. In my startup function I call this function
app.Config = ConfigFunction(app);
to load the startup values set on the GUI to app.Config (which is a private property). This seems to create an error after Compiler is used. I have set a couple of message-boxes to figure out where the error occurs.
But why is everything working fine befor compilation and after compilation the .exe doesn't work?
  댓글 수: 10
Bruno Luong
Bruno Luong 2020년 10월 12일
편집: Bruno Luong 2020년 10월 12일
I don't know, I never use Application Compiler app or compiler.package.installer. I use MCC command directly.
You need to make distinction how you open the text file, full path, relative path, etc... and use
isdeployed
function to determine which case the app is runing. I use this function to return the root path of the app, then read the file relative to the app root directory.
function currentDir = getcurrentdir
% currentDir = getcurrentdir
if isdeployed % Stand-alone mode.
[~, result] = system('set PATH');
currentDir = char(regexpi(result, 'Path=(.*?);', 'tokens', 'once'));
else % MATLAB mode.
thisfile = mfilename('fullpath');
currentDir = fileparts(fileparts(thisfile));
end
Of course you have to put the text file at the corresponding places.
Mario Malic
Mario Malic 2020년 10월 12일
Alright, makes some sense. Thank you very much.

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

채택된 답변

Dominik Müller
Dominik Müller 2020년 10월 12일
편집: Dominik Müller 2020년 10월 12일

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Standalone Applications에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by