AppDesigner standalone App Error
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
Anshika Chourasia
el 2 de Dic. de 2021
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 comentarios
Barbara Kammerl
el 2 de Dic. de 2021
Anshika Chourasia
el 8 de Dic. de 2021
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
el 9 de Dic. de 2021
Categorías
Más información sobre Get Started with MATLAB Compiler en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!