AppDesigner standalone App Error
古いコメントを表示
Hello, i have a Problem with running a standalone App from Matlabs AppDesigner.
I can build a standalone App with Matlabs Application Compiler with some Warnings that several files/functions have been "excluded from packaging for the "MCR" target environment according to the "Compiler" license". (which are functions we don't have in our code)
I can install the standalone App but while trying to run it it shows the Error- Message:
"Unrecognized function or variable 'matlab.internal.getSettingsRoot'... Error at Line 721"
The responsible part of my code is one the AppDesigner generates by itself:
% Construct app
function app = App_Name(varargin)
% Create UIFigure and components
createComponents(app) % Line 721
% Register the app with App Designer
registerApp(app, app.AppFigure)
% Execute the startup function
runStartupFcn(app, @(app)startupFcn(app, varargin{:}))
if nargout == 0
clear app
end
end
I know how to edit this part but i don't know what i should write instead so that my app works.
Thanks in advance for your help.
採用された回答
その他の回答 (1 件)
Anshika Chourasia
2021 年 12 月 2 日
Hi Barbara,
According to my understanding the issue is very likely to be caused by a corrupt pathdef.m file on your MATLAB search path.
To check where this corrupt file is based, please perform the steps below.
1. Type the following commands in the MATLAB Command Window
p = path
save('my_path')
These commands will save your MATLAB path as a backup
2. Close MATLAB
3. Start MATLAB from the folder <matlabroot>\toolbox\local.
Note that the <matlabroot> part is dependent on your specific machine. To obtain the full path of <matlabroot>, type matlabroot in the MATLAB Command Window.
4. Type the following commands in the MATLAB Command Window
restoredefaultpath
savepath
5. Check whether you can start MATLAB without any error message now
If the error persists, check whether a file called "pathdef.m" exists which is not the one in <matlabroot>\toolbox\local. You can check this by executing the command:
which -all pathdef
If this file exists, please remove it from the MATLAB search path.
3 件のコメント
Barbara Kammerl
2021 年 12 月 2 日
Anshika Chourasia
2021 年 12 月 8 日
It seems to me that it's related to MATLAB standalone compiler settings which internally causing 'matlab.internal.getSettingsRoot' error. Have you tried the above workaround?
Barbara Kammerl
2021 年 12 月 9 日
カテゴリ
ヘルプ センター および File Exchange で Get Started with MATLAB Compiler についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!